diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-18 18:20:08 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-18 18:20:08 +0000 |
| commit | ac875d22a95dc12709921e098f0d3843133974e9 (patch) | |
| tree | dfb93d5d26e1cc4570e7d15f5528b858a062f5e7 | |
| parent | c86539f501ed1ec7525a123606dc699a3641e970 (diff) | |
| download | forums-ac875d22a95dc12709921e098f0d3843133974e9.tar forums-ac875d22a95dc12709921e098f0d3843133974e9.tar.gz forums-ac875d22a95dc12709921e098f0d3843133974e9.tar.bz2 forums-ac875d22a95dc12709921e098f0d3843133974e9.tar.xz forums-ac875d22a95dc12709921e098f0d3843133974e9.zip | |
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
| -rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 9 |
1 files 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) ); |
