aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-04 11:39:25 +0000
committerChris Smith <toonarmy@phpbb.com>2011-09-20 21:06:51 +0100
commit9e4349e7faac65403de02fd090a837fee92b764a (patch)
tree7727f53d3d756508e0baf78c5c3713355b52525b /phpBB/install/schemas
parent57451a2014bba889ea8fe3c8053c6442948cc728 (diff)
downloadforums-9e4349e7faac65403de02fd090a837fee92b764a.tar
forums-9e4349e7faac65403de02fd090a837fee92b764a.tar.gz
forums-9e4349e7faac65403de02fd090a837fee92b764a.tar.bz2
forums-9e4349e7faac65403de02fd090a837fee92b764a.tar.xz
forums-9e4349e7faac65403de02fd090a837fee92b764a.zip
[feature/remove-db-styles] Removed database storage of style components.
The bulk of database storage of templates is removed, rendering template stored in the database as useless. Theme database storage is reduced to a skeleton for full removal soon. This commit was cherry picked from the old feature/ascraeus-experiment branch the old commit hash is 0dbe7e3b6cd450342d3c566eb2caf36ca1b5db8e. PHPBB3-9741
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r--phpBB/install/schemas/schema_data.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index 0d6409991f..cd4e80ba13 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -437,7 +437,7 @@ INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order)
INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id) VALUES ('prosilver', '&copy; phpBB Group', 1, 1, 1);
# -- phpbb_styles_template
-INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('prosilver', '&copy; phpBB Group', 'prosilver', 'lNg=', 0);
+INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield) VALUES ('prosilver', '&copy; phpBB Group', 'prosilver', 'lNg=');
# -- phpbb_styles_theme
INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('prosilver', '&copy; phpBB Group', 'prosilver', 1, '');