Browse Source

! Stupid typo. Fixes #946.

Signed-off-by: Peter Spicer <[email protected]>
Peter Spicer 11 years ago
parent
commit
df5e3275d2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      other/upgrade_2-1_mysql.sql
  2. 1 1
      other/upgrade_2-1_postgresql.sql

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

@@ -246,7 +246,7 @@ ADD COLUMN description text NOT NULL;
 --- Adding support for alerts
 /******************************************************************************/
 ---# Adding the count to the members table...
-ALERT TABLE {$db_prefix}members
+ALTER TABLE {$db_prefix}members
 ADD COLUMN alerts int(10) unsigned NOT NULL default '0';
 ---#
 

+ 1 - 1
other/upgrade_2-1_postgresql.sql

@@ -310,7 +310,7 @@ upgrade_query("
 --- Adding support for alerts
 /******************************************************************************/
 ---# Adding the count to the members table...
-ALERT TABLE {$db_prefix}members
+ALTER TABLE {$db_prefix}members
 ADD COLUMN alerts int NOT NULL default '0';
 ---#