aboutsummaryrefslogtreecommitdiffstats
path: root/install/phpwebgallery_structure.sql
diff options
context:
space:
mode:
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r--install/phpwebgallery_structure.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql
index 7662746fd..9f94e28e1 100644
--- a/install/phpwebgallery_structure.sql
+++ b/install/phpwebgallery_structure.sql
@@ -201,6 +201,18 @@ CREATE TABLE `phpwebgallery_sites` (
) TYPE=MyISAM;
--
+-- Table structure for table `phpwebgallery_upgrade`
+--
+
+DROP TABLE IF EXISTS `phpwebgallery_upgrade`;
+CREATE TABLE `phpwebgallery_upgrade` (
+ `id` varchar(20) NOT NULL default '',
+ `applied` datetime NOT NULL default '0000-00-00 00:00:00',
+ `description` varchar(255) default NULL,
+ PRIMARY KEY (`id`)
+) TYPE=MyISAM;
+
+--
-- Table structure for table `phpwebgallery_user_access`
--