From ac875d22a95dc12709921e098f0d3843133974e9 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 18 Jul 2003 18:20:08 +0000 Subject: [PATCH] Changes to styles table ... themes in this case, storedb, boolean flag for whether style was stored in the DB or on the FS git-svn-id: file:///svn/phpbb/trunk@4281 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 3f229b3871..5c1244531c 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -473,10 +473,11 @@ CREATE TABLE phpbb_styles_template ( # Table: 'phpbb_styles_theme' CREATE TABLE phpbb_styles_theme ( theme_id tinyint(4) UNSIGNED NOT NULL auto_increment, - theme_name varchar(30), - theme_copyright varchar(50), - theme_path varchar(30), - css_data text, + 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, PRIMARY KEY (theme_id) );