mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-11 19:23:01 +02:00
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:
@@ -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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user