Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jonh 2 posts 22 karma points
    Mar 28, 2014 @ 19:51
    Jonh
    0

    Categories for Umbraco for MySql

    Can you make a package for your project compatible with MySQL

    Thanks

  • Jonh 2 posts 22 karma points
    Mar 29, 2014 @ 03:46
    Jonh
    0

    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

Please Sign in or register to post replies

Write your reply to:

Draft