mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Combined theme/templates in profile as suggested, added META refresh and made a couple of other changes
git-svn-id: file:///svn/phpbb/trunk@1018 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -50,7 +50,6 @@ CREATE TABLE phpbb_groups (
|
||||
group_name varchar(40) NOT NULL,
|
||||
group_description varchar(255) NOT NULL,
|
||||
group_moderator int(11) DEFAULT '0' NOT NULL,
|
||||
group_single_user tinyint(1) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (group_id),
|
||||
KEY group_single_user (group_single_user)
|
||||
);
|
||||
@@ -91,11 +90,52 @@ CREATE TABLE phpbb_categories (
|
||||
#
|
||||
DROP TABLE IF EXISTS phpbb_config;
|
||||
CREATE TABLE phpbb_config (
|
||||
config_name varchar(255) NOT NULL,
|
||||
config_value varchar(255) NOT NULL,
|
||||
PRIMARY KEY (config_name)
|
||||
config_id int(11) NOT NULL auto_increment,
|
||||
board_disable tinyint(1) DEFAULT '0' NOT NULL,
|
||||
board_startdate int(11),
|
||||
sitename varchar(100),
|
||||
cookie_name char(20),
|
||||
cookie_path char(25),
|
||||
cookie_domain char(50),
|
||||
cookie_secure tinyint(1),
|
||||
session_length int(11),
|
||||
allow_html tinyint(1),
|
||||
allow_html_tags char(255) DEFAULT 'b,u,i,pre,font color' NOT NULL,
|
||||
allow_bbcode tinyint(1),
|
||||
allow_smilies tinyint(1),
|
||||
allow_sig tinyint(1),
|
||||
allow_namechange tinyint(1),
|
||||
allow_theme_create tinyint(1),
|
||||
allow_avatar_local tinyint(1) DEFAULT '0' NOT NULL,
|
||||
allow_avatar_remote tinyint(1) DEFAULT '0' NOT NULL,
|
||||
allow_avatar_upload tinyint(1) DEFAULT '0' NOT NULL,
|
||||
override_themes tinyint(3),
|
||||
posts_per_page int(11),
|
||||
topics_per_page int(11),
|
||||
hot_threshold int(11),
|
||||
max_poll_options int(11),
|
||||
email_sig varchar(255),
|
||||
email_from varchar(100),
|
||||
smtp_delivery tinyint(1) DEFAULT '0' NOT NULL,
|
||||
smtp_host varchar(50),
|
||||
require_activation tinyint(1) DEFAULT '0' NOT NULL,
|
||||
flood_interval int(4) NOT NULL,
|
||||
avatar_filesize int(11) DEFAULT '6144' NOT NULL,
|
||||
avatar_max_width smallint(6) DEFAULT '70' NOT NULL,
|
||||
avatar_max_height smallint(6) DEFAULT '70' NOT NULL,
|
||||
avatar_path varchar(255) DEFAULT 'images/avatars' NOT NULL,
|
||||
smilies_path char(100) DEFAULT 'images/smiles' NOT NULL,
|
||||
default_theme int(11) DEFAULT '1' NOT NULL,
|
||||
default_lang varchar(255),
|
||||
default_dateformat varchar(14) DEFAULT 'd M Y H:i' NOT NULL,
|
||||
system_timezone int(11) DEFAULT '0' NOT NULL,
|
||||
sys_template varchar(100) DEFAULT 'Default' NOT NULL,
|
||||
prune_enable tinyint(1) DEFAULT '1' NOT NULL,
|
||||
gzip_compress tinyint(1) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (config_id)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_disallow'
|
||||
@@ -266,8 +306,8 @@ CREATE TABLE phpbb_ranks (
|
||||
# competing boards, just that I find it's best not to
|
||||
# look at any code ... !
|
||||
#
|
||||
DROP TABLE IF EXISTS phpbb_session;
|
||||
CREATE TABLE phpbb_session (
|
||||
DROP TABLE IF EXISTS phpbb_sessions;
|
||||
CREATE TABLE phpbb_sessions (
|
||||
session_id char(32) DEFAULT '' NOT NULL,
|
||||
session_user_id int(11) DEFAULT '0' NOT NULL,
|
||||
session_start int(11) DEFAULT '0' NOT NULL,
|
||||
@@ -302,7 +342,8 @@ CREATE TABLE phpbb_smilies (
|
||||
#
|
||||
DROP TABLE IF EXISTS phpbb_themes;
|
||||
CREATE TABLE phpbb_themes (
|
||||
themes_id int(11) NOT NULL auto_increment,
|
||||
themes_id int(11) NOT NULL auto_increment,
|
||||
template_name varchar(30) NOT NULL default '',
|
||||
themes_name varchar(30) NOT NULL default '',
|
||||
head_stylesheet varchar(100) default NULL,
|
||||
body_background varchar(100) default NULL,
|
||||
@@ -529,4 +570,4 @@ CREATE TABLE phpbb_words (
|
||||
word varchar(100) NOT NULL,
|
||||
replacement varchar(100) NOT NULL,
|
||||
PRIMARY KEY (word_id)
|
||||
);
|
||||
);
|
Reference in New Issue
Block a user