Browse Source

! Typo in installer, causing categories table not to be made. Fixes #939.

Signed-off-by: Peter Spicer <sleeping@myperch.org>
Peter Spicer 11 years ago
parent
commit
328d9ca37a
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 default,
   can_collapse tinyint(1) NOT NULL default '1',
   PRIMARY KEY (id_cat)
 ) ENGINE=MyISAM;