mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
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
This commit is contained in:
parent
c86539f501
commit
ac875d22a9
1 changed files with 5 additions and 4 deletions
|
@ -473,10 +473,11 @@ CREATE TABLE phpbb_styles_template (
|
||||||
# Table: 'phpbb_styles_theme'
|
# Table: 'phpbb_styles_theme'
|
||||||
CREATE TABLE phpbb_styles_theme (
|
CREATE TABLE phpbb_styles_theme (
|
||||||
theme_id tinyint(4) UNSIGNED NOT NULL auto_increment,
|
theme_id tinyint(4) UNSIGNED NOT NULL auto_increment,
|
||||||
theme_name varchar(30),
|
theme_name varchar(30) DEFAULT '' NOT NULL,
|
||||||
theme_copyright varchar(50),
|
theme_copyright varchar(50) DEFAULT '' NOT NULL,
|
||||||
theme_path varchar(30),
|
theme_path varchar(30) DEFAULT '' NOT NULL,
|
||||||
css_data text,
|
css_storedb tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
|
css_data text DEFAULT '' NOT NULL,
|
||||||
PRIMARY KEY (theme_id)
|
PRIMARY KEY (theme_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue