Ok can you edit your package install for detect the database server and run the good script :
This is the script for MySQL.
DROP TABLE IF EXISTS umb_powerdbhelp.categories; CREATE TABLE umb_powerdbhelp.categories ( id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, name varchar(100) NOT NULL, description varchar(255) NULL, parentId int(11) NULL DEFAULT '0', sortOrder int(11) NOT NULL, selectable tinyint(1) NOT NULL DEFAULT '1', enabled tinyint(1) NOT NULL DEFAULT '1' )
Categories for Umbraco for MySql
Can you make a package for your project compatible with MySQL
Thanks
Ok can you edit your package install for detect the database server and run the good script :
This is the script for MySQL.
DROP TABLE IF EXISTS umb_powerdbhelp.categories;
CREATE TABLE umb_powerdbhelp.categories (
id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
name varchar(100) NOT NULL,
description varchar(255) NULL,
parentId int(11) NULL DEFAULT '0',
sortOrder int(11) NOT NULL,
selectable tinyint(1) NOT NULL DEFAULT '1',
enabled tinyint(1) NOT NULL DEFAULT '1'
)
After we created the table, all run smootly.
Thanks for this awasome project.
John from SolexD.com
is working on a reply...