aboutsummaryrefslogtreecommitdiffstats
path: root/install/phpwebgallery_structure.sql
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-11-24 21:37:29 +0000
committerplegall <plg@piwigo.org>2005-11-24 21:37:29 +0000
commit935b69d868ecc7d06f8059ff7ac4ca8dc6ad4e30 (patch)
treef552b3b8bd4f2522615bbb3afebc359ff6ef421e /install/phpwebgallery_structure.sql
parenta6c4effc7298cadb44e5f0d8120e4e2c0c9292cc (diff)
- new: system to notify and upgrade database among developers
git-svn-id: http://piwigo.org/svn/trunk@953 68402e56-0260-453c-a942-63ccdbb3a9ee
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`
--