mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
Altered layout of phpbb_config table
git-svn-id: file:///svn/phpbb/trunk@1010 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -87,49 +87,9 @@ CREATE TABLE phpbb_categories (
|
||||
Table structure for table phpbb_config
|
||||
-------------------------------------------------------- */
|
||||
CREATE TABLE phpbb_config (
|
||||
config_id int2 NOT NULL,
|
||||
board_disable int2 DEFAULT '0' NOT NULL,
|
||||
board_startdate int4,
|
||||
sitename varchar(100) NOT NULL,
|
||||
cookie_name varchar(20),
|
||||
cookie_path varchar(25),
|
||||
cookie_domain varchar(50),
|
||||
cookie_secure int2,
|
||||
session_length int4,
|
||||
allow_html int2 NOT NULL,
|
||||
allow_html_tags char(255) DEFAULT 'b,u,i,pre,font color' NOT NULL,
|
||||
allow_bbcode int2 NOT NULL,
|
||||
allow_smilies int2 NOT NULL,
|
||||
allow_sig int2 NOT NULL,
|
||||
allow_namechange int2 NOT NULL,
|
||||
allow_theme_create int2 NOT NULL,
|
||||
allow_avatar_local int2 DEFAULT '0' NOT NULL,
|
||||
allow_avatar_remote int2 DEFAULT '0' NOT NULL,
|
||||
allow_avatar_upload int2 DEFAULT '0' NOT NULL,
|
||||
posts_per_page int2 NOT NULL,
|
||||
topics_per_page int2 NOT NULL,
|
||||
hot_threshold int2 NOT NULL,
|
||||
max_poll_options int,
|
||||
email_sig varchar(255) NOT NULL,
|
||||
email_from varchar(100) NOT NULL,
|
||||
smtp_delivery int2 DEFAULT '0' NOT NULL,
|
||||
smtp_host varchar(50),
|
||||
require_activation int2 DEFAULT '0' NOT NULL,
|
||||
default_theme int4 NOT NULL,
|
||||
default_dateformat varchar(20) NOT NULL,
|
||||
default_lang varchar(50) NOT NULL,
|
||||
system_timezone int4 NOT NULL,
|
||||
sys_template varchar(50) NOT NULL,
|
||||
avatar_filesize int4 DEFAULT '6144' NOT NULL,
|
||||
avatar_max_width int2 DEFAULT '70' NOT NULL,
|
||||
avatar_max_height int2 DEFAULT '70' NOT NULL,
|
||||
avatar_path varchar(255) DEFAULT 'images/avatars' NOT NULL,
|
||||
smilies_path varchar(50) DEFAULT 'images/smiles' NOT NULL,
|
||||
override_themes int2 NOT NULL,
|
||||
flood_interval int NOT NULL,
|
||||
prune_enable int2 DEFAULT '0' NOT NULL,
|
||||
gzip_compress int2 DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT phpbb_config_pkey PRIMARY KEY (config_id)
|
||||
config_name varchar(255) NOT NULL,
|
||||
config_value varchar(255) NOT NULL,
|
||||
CONSTRAINT phpbb_config_pkey PRIMARY KEY (config_name)
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user