- making sure the type field is set right for blocks: 1 -> 0, 2 ->1.

4.1.x
Kjartan Mannes 2002-10-26 21:47:55 +00:00
parent 470d763bdc
commit 18eb8f050a
1 changed files with 2 additions and 0 deletions

View File

@ -621,6 +621,8 @@ function update_42() {
function update_43() {
update_sql("ALTER TABLE blocks DROP remove");
update_sql("ALTER TABLE blocks DROP name");
update_sql("UPDATE blocks SET type = 0 WHERE type = 1");
update_sql("UPDATE blocks SET type = 1 WHERE type = 2");
}
function update_upgrade3() {