aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-06-14 19:33:57 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-06-14 19:33:57 +0000
commitdc3ed2e128d3e8aa65b54b3ec49c30918484c97e (patch)
tree992b520fb63cb8445698888602fd74ec973282d7 /phpBB/install/schemas/mysql_schema.sql
parent318f0ca5b828c960eba0407f2fdfbf354e334d50 (diff)
downloadforums-dc3ed2e128d3e8aa65b54b3ec49c30918484c97e.tar
forums-dc3ed2e128d3e8aa65b54b3ec49c30918484c97e.tar.gz
forums-dc3ed2e128d3e8aa65b54b3ec49c30918484c97e.tar.bz2
forums-dc3ed2e128d3e8aa65b54b3ec49c30918484c97e.tar.xz
forums-dc3ed2e128d3e8aa65b54b3ec49c30918484c97e.zip
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
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 8ac0cae222..4073ba2902 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -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)
);