From 0465e08795c35ee1e841e598d409a0abe58cecc1 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 19 Dec 2001 23:12:22 +0000 Subject: [PATCH] Topic last post id was set as non null ... git-svn-id: file:///svn/phpbb/trunk@1639 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/schemas/mssql_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/db/schemas/mssql_schema.sql b/phpBB/db/schemas/mssql_schema.sql index ba63203a6c..323b6865b0 100644 --- a/phpBB/db/schemas/mssql_schema.sql +++ b/phpBB/db/schemas/mssql_schema.sql @@ -288,7 +288,7 @@ CREATE TABLE [phpbb_topics] ( [topic_status] [smallint] NOT NULL , [topic_type] [smallint] NOT NULL , [topic_vote] [smallint] NOT NULL , - [topic_last_post_id] [int] NOT NULL , + [topic_last_post_id] [int] NULL , [topic_moved_id] [int] NULL ) ON [PRIMARY] GO