aboutsummaryrefslogtreecommitdiffstats
path: root/admin/phpwebgallery_structure.sql
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2003-07-24 23:00:01 +0000
committerz0rglub <z0rglub@piwigo.org>2003-07-24 23:00:01 +0000
commite8af3fb60e6f2a3f1a7c57157f40ce4dd1f99906 (patch)
treedff0fe8fd1aad5da6e4d40dd136dcf3f6120003b /admin/phpwebgallery_structure.sql
parent488701573a115dd8bd134598ebb7eca44cd028a5 (diff)
Adding support of independant uploadable categories
git-svn-id: http://piwigo.org/svn/trunk@35 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/phpwebgallery_structure.sql')
-rw-r--r--admin/phpwebgallery_structure.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/admin/phpwebgallery_structure.sql b/admin/phpwebgallery_structure.sql
index 08a4bc191..4cc2f2bd1 100644
--- a/admin/phpwebgallery_structure.sql
+++ b/admin/phpwebgallery_structure.sql
@@ -21,6 +21,7 @@ CREATE TABLE phpwebgallery_categories (
status enum('public','private') NOT NULL default 'public',
site_id tinyint(4) unsigned NOT NULL default '1',
visible enum('true','false') NOT NULL default 'true',
+ uploadable enum('true','false') NOT NULL default 'false',
PRIMARY KEY (id)
) TYPE=MyISAM;