diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-07 18:25:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-07 18:25:09 +0000 |
commit | bea3dbb77574cb5b4274c318b01443d640d5c87b (patch) | |
tree | 2d339c9a52a0dc6f5ce275de2c355e0cbe7d3a92 /update.php | |
parent | 71eac6dddc79d5b2ad3567969743269534bfc9d6 (diff) | |
download | brdo-bea3dbb77574cb5b4274c318b01443d640d5c87b.tar.gz brdo-bea3dbb77574cb5b4274c318b01443d640d5c87b.tar.bz2 |
- Patch 0185 by Jeremy: made it possible to automatically disable modules when
under heave load.
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 */ |