Minor change, move bbcode_bitfield to template since it's template specific

git-svn-id: file:///svn/phpbb/trunk@4132 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-06-14 19:33:57 +00:00
parent 318f0ca5b8
commit dc3ed2e128
2 changed files with 4 additions and 4 deletions

View file

@ -464,7 +464,6 @@ CREATE TABLE phpbb_styles (
theme_id tinyint(4) UNSIGNED NOT NULL,
imageset_id tinyint(4) UNSIGNED NOT NULL,
style_name char(30) NOT NULL,
bbcode_bitfield int(11) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (style_id),
KEY (template_id),
KEY (theme_id),
@ -477,7 +476,8 @@ CREATE TABLE phpbb_styles_template (
template_name varchar(30) NOT NULL,
template_path varchar(50) NOT NULL,
poll_length smallint(5) UNSIGNED NOT NULL,
pm_box_length smallint(5) UNSIGNED NOT NULL,
pm_box_length smallint(5) UNSIGNED NOT NULL,
bbcode_bitfield int(11) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (template_id)
);

View file

@ -241,7 +241,7 @@ INSERT INTO phpbb_auth_options (auth_option, is_global) VALUES ('u_search', 1);
# MSSQL IDENTITY phpbb_styles ON #
# -- phpbb_styles
INSERT INTO phpbb_styles (style_id, template_id, theme_id, imageset_id, style_name, bbcode_bitfield) VALUES (1, 1, 1, 1, 'subSilver', 2817);
INSERT INTO phpbb_styles (style_id, template_id, theme_id, imageset_id, style_name) VALUES (1, 1, 1, 1, 'subSilver');
# MSSQL IDENTITY phpbb_styles OFF #
@ -257,7 +257,7 @@ INSERT INTO phpbb_styles_imageset (imageset_id, imageset_name, imageset_path, bt
# MSSQL IDENTITY phpbb_styles_template ON #
# -- phpbb_styles_template
INSERT INTO phpbb_styles_template (template_id, template_name, template_path, poll_length, pm_box_length) VALUES (1, 'subSilver © phpBB Group', 'subSilver', 205, 175);
INSERT INTO phpbb_styles_template (template_id, template_name, template_path, poll_length, pm_box_length, bbcode_bitfield) VALUES (1, 'subSilver © phpBB Group', 'subSilver', 205, 175, 2817);
# MSSQL IDENTITY phpbb_styles_template OFF #