aboutsummaryrefslogtreecommitdiffstats
path: root/install/phpwebgallery_structure.sql
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-03-25 22:26:35 +0000
committerplegall <plg@piwigo.org>2005-03-25 22:26:35 +0000
commitaed2bd916e0866a11352c14a695bf539d609951f (patch)
treea9f55156dfae185babf8978934ce6ac9f8c861ef /install/phpwebgallery_structure.sql
parent412ea5e01af67ed4ef7f4443d459056ad142d972 (diff)
- new feature : caddie (new table was forgotten in previous commit)
git-svn-id: http://piwigo.org/svn/trunk@757 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r--install/phpwebgallery_structure.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql
index 45cfc8176..2d92e25e6 100644
--- a/install/phpwebgallery_structure.sql
+++ b/install/phpwebgallery_structure.sql
@@ -5,6 +5,17 @@
-- Server version 3.23.49-log
--
+-- Table structure for table 'phpwebgallery_caddie'
+--
+
+DROP TABLE IF EXISTS phpwebgallery_caddie;
+CREATE TABLE phpwebgallery_caddie (
+ user_id smallint(5) NOT NULL default '0',
+ element_id mediumint(8) NOT NULL default '0',
+ PRIMARY KEY (user_id,element_id)
+) TYPE=MyISAM;
+
+--
-- Table structure for table 'phpwebgallery_categories'
--