summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'update.php')
-rw-r--r--update.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php
index 8b595c385..0915618c0 100644
--- a/update.php
+++ b/update.php
@@ -64,7 +64,8 @@ $mysql_updates = array(
"2003-01-05" => "update_49",
"2003-01-15" => "update_50",
"2003-04-19" => "update_51",
- "2003-04-20" => "update_52"
+ "2003-04-20" => "update_52",
+ "2003-05-18" => "update_53"
);
// Update functions
@@ -704,6 +705,10 @@ function update_52() {
update_sql("UPDATE sequences SET name = 'term_data_tid' WHERE name = 'term_data'");
}
+function update_53() {
+ update_sql("CREATE INDEX book_parent ON book(parent);");
+}
+
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)");