Browse Source

! Would have been nice if people had given me the error message, would have been able to have fixed this silly mistake sooner. Fixes #941.

Signed-off-by: Peter Spicer <sleeping@myperch.org>
Peter Spicer 11 years ago
parent
commit
ec19648cee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      other/install_2-1_mysql.sql

+ 1 - 1
other/install_2-1_mysql.sql

@@ -707,7 +707,7 @@ CREATE TABLE {$db_prefix}categories (
   id_cat tinyint(4) unsigned NOT NULL auto_increment,
   cat_order tinyint(4) NOT NULL default '0',
   name varchar(255) NOT NULL default '',
-  description text NOT NULL default,
+  description text NOT NULL,
   can_collapse tinyint(1) NOT NULL default '1',
   PRIMARY KEY (id_cat)
 ) ENGINE=MyISAM;