mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
Added disable board and some avatar related config stuff
git-svn-id: file:///svn/phpbb/trunk@538 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -88,7 +88,6 @@ DROP TABLE IF EXISTS phpbb_config;
|
||||
|
||||
CREATE TABLE phpbb_config (
|
||||
config_id int(10) NOT NULL auto_increment,
|
||||
selected int(2) DEFAULT '0' NOT NULL,
|
||||
board_disable tinyint(1) DEFAULT '0' NOT NULL,
|
||||
sitename varchar(100),
|
||||
allow_html tinyint(1),
|
||||
@@ -98,13 +97,15 @@ CREATE TABLE phpbb_config (
|
||||
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(10),
|
||||
topics_per_page int(10),
|
||||
hot_threshold int(10),
|
||||
email_sig varchar(255),
|
||||
email_from varchar(100),
|
||||
email_from varchar(100),
|
||||
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,
|
||||
|
@@ -84,8 +84,7 @@ CREATE TABLE phpbb_categories (
|
||||
-------------------------------------------------------- */
|
||||
CREATE TABLE phpbb_config (
|
||||
config_id int2 NOT NULL,
|
||||
selected int2 NOT NULL,
|
||||
disable_board int2 DEFAULT '0' NOT NULL,
|
||||
board_disable int2 DEFAULT '0' NOT NULL,
|
||||
sitename varchar(100) NOT NULL,
|
||||
allow_html int2 NOT NULL,
|
||||
allow_bbcode int2 NOT NULL,
|
||||
@@ -101,6 +100,7 @@ CREATE TABLE phpbb_config (
|
||||
hot_threshold int2 NOT NULL,
|
||||
email_sig varchar(255) NOT NULL,
|
||||
email_from varchar(100) NOT NULL,
|
||||
require_activation int2 DEFAULT '0' NOT NULL,
|
||||
default_theme int4 NOT NULL,
|
||||
default_dateformat varchar(20) NOT NULL,
|
||||
default_lang varchar(50) NOT NULL,
|
||||
|
Reference in New Issue
Block a user