diff options
author | patdenice <patdenice@piwigo.org> | 2010-03-25 10:27:17 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-03-25 10:27:17 +0000 |
commit | 06c7acda4fcc465ee5f7bd29ae47ee380535ba83 (patch) | |
tree | 190d28cf8dfaa4487b5e6930dba2cd5a3b917e44 /install/piwigo_structure-mysql.sql | |
parent | 663be9ca638c12d889036d5143fd6553f2575373 (diff) |
Feature 1535: Add languages table.
Ready for theme manager!
git-svn-id: http://piwigo.org/svn/trunk@5341 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/piwigo_structure-mysql.sql')
-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 a187378b0..e9f0eb0dc 100644 --- a/install/piwigo_structure-mysql.sql +++ b/install/piwigo_structure-mysql.sql @@ -204,6 +204,18 @@ CREATE TABLE `piwigo_images` ( ) TYPE=MyISAM; -- +-- Table structure for table `piwigo_languages` +-- + +DROP TABLE IF EXISTS `piwigo_languages`; +CREATE TABLE `piwigo_languages` ( + `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_old_permalinks` -- |