From 0683331acd0ee1ddb07bec2e68cece64e3ddbbc5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 17 Jan 2002 20:21:11 +0000 Subject: - Added an 'data' column to the user table. --- update.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'update.php') diff --git a/update.php b/update.php index b86627427..90564ea21 100644 --- a/update.php +++ b/update.php @@ -43,6 +43,7 @@ $mysql_updates = array( "2001-12-30" => "update_16", "2001-12-31" => "update_17", "2002-01-05" => "update_18", + "2002-01-17" => "update_19", ); // Update functions @@ -312,6 +313,10 @@ function update_18() { update_sql("ALTER TABLE cache CHANGE url cid varchar(255) DEFAULT '' NOT NULL;"); } +function update_19() { + update_sql("ALTER TABLE users ADD data TEXT;"); +} + /* ** System functions */ -- cgit v1.2.3