diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 6a97f8898..a753f7b66 100644 --- a/update.php +++ b/update.php @@ -62,7 +62,8 @@ $mysql_updates = array( "2003-10-27" => "update_70", "2003-11-17" => "update_71", "2003-11-27" => "update_72", - "2003-12-03" => "update_73" + "2003-12-03" => "update_73", + "2003-12-06" => "update_74" ); function update_32() { @@ -585,6 +586,10 @@ function update_73() { } } +function update_74() { + update_sql("ALTER TABLE {system} ADD throttle tinyint(1) NOT NULL DEFAULT '0'"); +} + /* ** System functions */ |