diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-09 13:37:35 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-09 13:37:35 +0000 |
commit | aa718d4a027259997f7a5732d8a0fdd328315bd7 (patch) | |
tree | 338e57fbf30ac6bda56972279b79b5a0bd8d422d /phpBB/install/schemas/mysql_schema.sql | |
parent | 2c9ff9686ca1ec0a949e17ac3c2f73358f1f5000 (diff) | |
download | forums-aa718d4a027259997f7a5732d8a0fdd328315bd7.tar forums-aa718d4a027259997f7a5732d8a0fdd328315bd7.tar.gz forums-aa718d4a027259997f7a5732d8a0fdd328315bd7.tar.bz2 forums-aa718d4a027259997f7a5732d8a0fdd328315bd7.tar.xz forums-aa718d4a027259997f7a5732d8a0fdd328315bd7.zip |
Minor schema adjustments, additional/altered config and acl options, added u_ options to basic (initial) group auth setup
git-svn-id: file:///svn/phpbb/trunk@3621 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index d997a84b00..50c57d4602 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -371,6 +371,8 @@ CREATE TABLE phpbb_privmsgs ( privmsgs_enable_html tinyint(1) DEFAULT '0' NOT NULL, privmsgs_enable_smilies tinyint(1) DEFAULT '1' NOT NULL, privmsgs_attach_sig tinyint(1) DEFAULT '1' NOT NULL, + privmsgs_text text, + privmsgs_bbcode_uid varchar(10) DEFAULT '0' NOT NULL, PRIMARY KEY (privmsgs_id), KEY privmsgs_from_userid (privmsgs_from_userid), KEY privmsgs_to_userid (privmsgs_to_userid) @@ -379,18 +381,6 @@ CREATE TABLE phpbb_privmsgs ( # -------------------------------------------------------- # -# Table structure for table 'phpbb_privmsgs_text' -# -CREATE TABLE phpbb_privmsgs_text ( - privmsgs_text_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, - privmsgs_bbcode_uid varchar(10) DEFAULT '0' NOT NULL, - privmsgs_text text, - PRIMARY KEY (privmsgs_text_id) -); - - -# -------------------------------------------------------- -# # Table structure for table 'phpbb_ranks' # CREATE TABLE phpbb_ranks ( @@ -496,6 +486,7 @@ CREATE TABLE phpbb_sessions ( session_ip varchar(40) DEFAULT '0' NOT NULL, session_browser varchar(100) DEFAULT '' NULL, session_page varchar(100) DEFAULT '0' NOT NULL, + session_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL, PRIMARY KEY (session_id), KEY session_time (session_time) ); |