diff options
Diffstat (limited to '')
-rw-r--r-- | install/piwigo_structure-mysql.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/install/piwigo_structure-mysql.sql b/install/piwigo_structure-mysql.sql index 13d46ab5c..a187378b0 100644 --- a/install/piwigo_structure-mysql.sql +++ b/install/piwigo_structure-mysql.sql @@ -293,6 +293,18 @@ CREATE TABLE `piwigo_tags` ( ) TYPE=MyISAM; -- +-- Table structure for table `piwigo_themes` +-- + +DROP TABLE IF EXISTS `piwigo_themes`; +CREATE TABLE `piwigo_themes` ( + `id` varchar(64) NOT NULL default '', + `version` varchar(64) NOT NULL default '0', + `name` varchar(64) default NULL, + PRIMARY KEY (`id`) +) TYPE=MyISAM; + +-- -- Table structure for table `piwigo_upgrade` -- |