aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql18
1 files changed, 15 insertions, 3 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index ccd7520ae3..deb4790f72 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -467,18 +467,30 @@ CREATE TABLE phpbb_styles_template (
template_copyright varchar(50) NOT NULL,
template_path varchar(30) NOT NULL,
bbcode_bitfield int(11) UNSIGNED DEFAULT '0' NOT NULL,
- tpl_storedb tinyint(1) DEFAULT '0' NOT NULL,
+ template_storedb tinyint(1) DEFAULT '0' NOT NULL,
PRIMARY KEY (template_id)
);
+# Table: 'phpbb_styles_template_data'
+CREATE TABLE phpbb_styles_template_data (
+ template_id tinyint(4) UNSIGNED NOT NULL,
+ template_filename varchar(50) DEFAULT '' NOT NULL,
+ template_included text NOT NULL,
+ template_mtime int(11) DEFAULT '0' NOT NULL,
+ template_data text,
+ KEY (template_id),
+ KEY (template_filename)
+);
+
# Table: 'phpbb_styles_theme'
CREATE TABLE phpbb_styles_theme (
theme_id tinyint(4) UNSIGNED NOT NULL auto_increment,
theme_name varchar(30) DEFAULT '' NOT NULL,
theme_copyright varchar(50) DEFAULT '' NOT NULL,
theme_path varchar(30) DEFAULT '' NOT NULL,
- css_storedb tinyint(1) DEFAULT '0' NOT NULL,
- css_data text DEFAULT '' NOT NULL,
+ theme_storedb tinyint(1) DEFAULT '0' NOT NULL,
+ theme_mtime int(11) DEFAULT '0' NOT NULL,
+ theme_data text DEFAULT '' NOT NULL,
PRIMARY KEY (theme_id)
);