- Changed the size of the data-field in the cache table.

4.0.x
Dries Buytaert 2002-02-19 19:25:20 +00:00
parent fd59f5a199
commit 3c8de3e9fe
1 changed files with 6 additions and 1 deletions

View File

@ -45,7 +45,8 @@ $mysql_updates = array(
"2002-01-05" => "update_18",
"2002-01-17" => "update_19",
"2002-01-27" => "update_20",
"2002-01-30" => "update_21"
"2002-01-30" => "update_21",
"2002-02-19" => "update_22"
);
// Update functions
@ -327,6 +328,10 @@ function update_21() {
update_sql("ALTER TABLE node ADD static int(2) DEFAULT '0' NOT NULL;");
}
function update_22() {
update_sql("ALTER TABLE cache MODIFY data MEDIUMTEXT;");
}
/*
** System functions
*/