From 43ba8cf99c88543485aab2df42b9dbabaad46be1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 27 Oct 2003 21:25:55 +0000 Subject: - Added an update to grow the 'name' field of the variables table. Patch by Gerhard. --- update.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/update.php b/update.php index d504f4a7b..fb44352de 100644 --- a/update.php +++ b/update.php @@ -58,7 +58,8 @@ $mysql_updates = array( "2003-09-30" => "update_66", "2003-10-11" => "update_67", "2003-10-20" => "update_68", - "2003-10-22" => "update_69" + "2003-10-22" => "update_69", + "2003-10-27" => "update_70" ); function update_32() { @@ -542,6 +543,10 @@ function update_69() { update_sql("UPDATE {users} SET name = '' WHERE uid = 0;"); } +function update_70() { + update_sql("ALTER TABLE {variable} CHANGE name name varchar(48) NOT NULL"); +} + /* ** System functions */ -- cgit v1.2.3