From 40c7072be7e69c113ff32ab8d30fcd69efe12fac Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 20 Mar 2002 14:04:48 +0000 Subject: [PATCH] Make first_id in topics NULL git-svn-id: file:///svn/phpbb/trunk@2370 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/update_to_RC4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/update_to_RC4.php b/phpBB/update_to_RC4.php index 3db0041ee2..11799d7ba8 100644 --- a/phpBB/update_to_RC4.php +++ b/phpBB/update_to_RC4.php @@ -216,7 +216,7 @@ switch ( SQL_LAYER ) ON " . USERS_TABLE . " (user_session_time)"; $sql[] = "ALTER TABLE " . TOPICS_TABLE . " ADD - topic_first_post_id int NOT NULL"; + topic_first_post_id int NULL"; $sql[] = "CREATE INDEX topic_first_post_id ON " . TOPICS_TABLE . " (topic_first_post_id)";