diff options
Diffstat (limited to 'phpBB/install/schemas/mssql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mssql_schema.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mssql_schema.sql b/phpBB/install/schemas/mssql_schema.sql index 74a8b3be0c..6308ddb60a 100644 --- a/phpBB/install/schemas/mssql_schema.sql +++ b/phpBB/install/schemas/mssql_schema.sql @@ -289,6 +289,7 @@ GO CREATE TABLE [phpbb_modules] ( [module_id] [int] IDENTITY (1, 1) NOT NULL , [module_enabled] [int] NOT NULL , + [module_display] [int] NOT NULL , [module_name] [varchar] (20) NOT NULL , [module_class] [varchar] (4) NOT NULL , [parent_id] [int] NOT NULL , @@ -1343,6 +1344,10 @@ ALTER TABLE [phpbb_modules] WITH NOCHECK ADD CONSTRAINT [DF_module_module_enabled] DEFAULT (1) FOR [module_enabled] GO +ALTER TABLE [phpbb_modules] WITH NOCHECK ADD + CONSTRAINT [DF_module_module_display] DEFAULT (1) FOR [module_display] +GO + ALTER TABLE [phpbb_poll_results] WITH NOCHECK ADD CONSTRAINT [DF_poll_r_poll_option_id] DEFAULT (0) FOR [poll_option_id], CONSTRAINT [DF_poll_r_topic_id] DEFAULT (0) FOR [topic_id], |