diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/update.php b/update.php index 646615de0..a0a055c45 100644 --- a/update.php +++ b/update.php @@ -54,7 +54,8 @@ $mysql_updates = array( "2002-09-15" => "update_39", "2002-09-17" => "update_40", "2002-10-13" => "update_41", - "2002-10-17" => "update_42" + "2002-10-17" => "update_42", + "2002-10-17" => "update_43" ); // Update functions @@ -617,6 +618,11 @@ function update_42() { update_sql("DROP TABLE referrer"); } +function update_43() { + update_sql("ALTER TABLE blocks DROP remove"); + update_sql("ALTER TABLE blocks DROP name"); +} + function update_upgrade3() { update_sql("INSERT INTO system VALUES ('archive.module','archive','module','',1)"); update_sql("INSERT INTO system VALUES ('block.module','block','module','',1)"); |