Feature 1535: Add languages table.

Ready for theme manager!

git-svn-id: http://piwigo.org/svn/trunk@5341 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2010-03-25 10:27:17 +00:00
parent 663be9ca63
commit 06c7acda4f
5 changed files with 95 additions and 2 deletions
+12
View File
@@ -203,6 +203,18 @@ CREATE TABLE `piwigo_images` (
KEY `images_i1` (`storage_category_id`)
) 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`
--