1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Moved cookie and session config to DB config table, added MSSQL schema

git-svn-id: file:///svn/phpbb/trunk@726 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-07-22 16:36:12 +00:00
parent d7415808ea
commit 7d83ba703c
4 changed files with 13 additions and 2 deletions

View File

@@ -88,6 +88,11 @@ CREATE TABLE phpbb_config (
config_id int2 NOT NULL,
board_disable int2 DEFAULT '0' NOT NULL,
sitename varchar(100) NOT NULL,
cookie_name char(20),
cookie_path char(25),
cookie_domain char(50),
cookie_secure int2,
session_length int4,
allow_html int2 NOT NULL,
allow_bbcode int2 NOT NULL,
allow_smilies int2 NOT NULL,
@@ -140,6 +145,7 @@ CREATE TABLE phpbb_forums (
cat_id int4,
forum_name varchar(150),
forum_desc text,
forum_status int2 DEFAULT '0' NOT NULL,
forum_order int4 DEFAULT '1' NOT NULL,
forum_posts int4 DEFAULT '0' NOT NULL,
forum_topics int4 DEFAULT '0' NOT NULL,