mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
some bugfixes
git-svn-id: file:///svn/phpbb/trunk@6149 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -291,7 +291,7 @@ CREATE TABLE phpbb_icons (
|
||||
icons_url varchar(255),
|
||||
icons_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
icons_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
icons_order tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
icons_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
PRIMARY KEY (icons_id)
|
||||
);
|
||||
@@ -639,7 +639,7 @@ CREATE TABLE phpbb_smilies (
|
||||
smiley_url varchar(50),
|
||||
smiley_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
smiley_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
smiley_order tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
smiley_order mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
display_on_posting tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
PRIMARY KEY (smiley_id)
|
||||
);
|
||||
|
@@ -615,7 +615,7 @@ CREATE TABLE phpbb_icons (
|
||||
icons_url varchar2(255),
|
||||
icons_width number(4) DEFAULT '0' NOT NULL,
|
||||
icons_height number(4) DEFAULT '0' NOT NULL,
|
||||
icons_order number(4) DEFAULT '0' NOT NULL,
|
||||
icons_order number(8) DEFAULT '0' NOT NULL,
|
||||
display_on_posting number(1) DEFAULT '1' NOT NULL,
|
||||
CONSTRAINT pk_phpbb_icons PRIMARY KEY (icons_id)
|
||||
)
|
||||
@@ -1322,7 +1322,7 @@ CREATE TABLE phpbb_smilies (
|
||||
smiley_url varchar2(50),
|
||||
smiley_width number(4) DEFAULT '0' NOT NULL,
|
||||
smiley_height number(4) DEFAULT '0' NOT NULL,
|
||||
smiley_order number(4) DEFAULT '0' NOT NULL,
|
||||
smiley_order number(8) DEFAULT '0' NOT NULL,
|
||||
display_on_posting number(1) DEFAULT '1' NOT NULL,
|
||||
CONSTRAINT pk_phpbb_smilies PRIMARY KEY (smiley_id)
|
||||
)
|
||||
|
@@ -485,7 +485,7 @@ CREATE TABLE phpbb_icons (
|
||||
icons_url varchar(255),
|
||||
icons_width INT2 NOT NULL,
|
||||
icons_height INT2 NOT NULL,
|
||||
icons_order INT2 NOT NULL,
|
||||
icons_order INT4 NOT NULL,
|
||||
display_on_posting INT2 DEFAULT '1' NOT NULL,
|
||||
PRIMARY KEY (icons_id),
|
||||
CHECK (icons_width>=0),
|
||||
@@ -981,7 +981,7 @@ CREATE TABLE phpbb_smilies (
|
||||
smiley_url varchar(50),
|
||||
smiley_width INT2 NOT NULL,
|
||||
smiley_height INT2 NOT NULL,
|
||||
smiley_order INT2 NOT NULL,
|
||||
smiley_order INT4 NOT NULL,
|
||||
display_on_posting INT2 DEFAULT '1' NOT NULL,
|
||||
PRIMARY KEY (smiley_id),
|
||||
CHECK (smiley_width>=0),
|
||||
|
@@ -65,7 +65,6 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path', '/')
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_secure', '0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable', '0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_hide_groups', '1');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('database_gc', '604800');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat', 'D M d, Y g:i a');
|
||||
|
@@ -315,7 +315,7 @@ CREATE TABLE phpbb_icons (
|
||||
icons_url varchar(255),
|
||||
icons_width tinyint(4) NOT NULL DEFAULT '0',
|
||||
icons_height tinyint(4) NOT NULL DEFAULT '0',
|
||||
icons_order tinyint(4) NOT NULL DEFAULT '0',
|
||||
icons_order mediumint(8) NOT NULL DEFAULT '0',
|
||||
display_on_posting tinyint(1) NOT NULL DEFAULT '1'
|
||||
);
|
||||
|
||||
@@ -687,7 +687,7 @@ CREATE TABLE phpbb_smilies (
|
||||
smiley_url varchar(50),
|
||||
smiley_width tinyint(4) NOT NULL DEFAULT '0',
|
||||
smiley_height tinyint(4) NOT NULL DEFAULT '0',
|
||||
smiley_order tinyint(4) NOT NULL DEFAULT '0',
|
||||
smiley_order mediumint(8) NOT NULL DEFAULT '0',
|
||||
display_on_posting tinyint(1) NOT NULL DEFAULT '1'
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user