Commit dcd65cb40a279b5a40bc9c7a33599643056c5d7e

Authored by Jarrett Jordaan
1 parent 9bb733bd

Daily Commit.

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
sql/mysql/install/structure.sql
... ... @@ -819,7 +819,7 @@ CREATE TABLE IF NOT EXISTS `folder_structures` (
819 819 --
820 820  
821 821 CREATE TABLE `folder_templates` (
822   -`id` INT( 11 ) UNSIGNED NOT NULL ,
  822 +`id` INT( 11 ) UNSIGNED NOT NULL auto_increment,
823 823 `name` VARCHAR( 255 ) NOT NULL ,
824 824 PRIMARY KEY ( `id` )
825 825 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
... ... @@ -829,7 +829,7 @@ PRIMARY KEY ( `id` )
829 829 --
830 830  
831 831 CREATE TABLE `folder_transactions` (
832   - `id` int(11) NOT NULL auto_increment,
  832 + `id` int(11) UNSIGNED NOT NULL auto_increment,
833 833 `folder_id` int(11) default NULL,
834 834 `user_id` int(11) default NULL,
835 835 `datetime` datetime NOT NULL default '0000-00-00 00:00:00',
... ...