diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-20 14:04:48 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-20 14:04:48 +0000 |
commit | 40c7072be7e69c113ff32ab8d30fcd69efe12fac (patch) | |
tree | 7aeb2bf63ba990306e043eb326be0d252d2bce1a /phpBB/update_to_RC4.php | |
parent | 05232173c5a621e6a9c3538ec998bf6d61e302df (diff) | |
download | forums-40c7072be7e69c113ff32ab8d30fcd69efe12fac.tar forums-40c7072be7e69c113ff32ab8d30fcd69efe12fac.tar.gz forums-40c7072be7e69c113ff32ab8d30fcd69efe12fac.tar.bz2 forums-40c7072be7e69c113ff32ab8d30fcd69efe12fac.tar.xz forums-40c7072be7e69c113ff32ab8d30fcd69efe12fac.zip |
Make first_id in topics NULL
git-svn-id: file:///svn/phpbb/trunk@2370 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/update_to_RC4.php')
-rw-r--r-- | phpBB/update_to_RC4.php | 2 |
1 files changed, 1 insertions, 1 deletions
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)"; |