aboutsummaryrefslogtreecommitdiffstats
path: root/install/piwigo_structure-mysql.sql
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2011-01-13 15:24:18 +0000
committerplegall <plg@piwigo.org>2011-01-13 15:24:18 +0000
commitfe569ab1bf4baa44a808a2d6e81bcddc28d61b62 (patch)
treed24dd5bb2db62ce6e8c5143412d549469fc33176 /install/piwigo_structure-mysql.sql
parentf03dcee21a4c5ef3b790de15decddff6c6c23b35 (diff)
feature 2108 added: user upload removed from core. It will come back as a
"new generation" user upload in the Community plugin. git-svn-id: http://piwigo.org/svn/trunk@8651 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/piwigo_structure-mysql.sql')
-rw-r--r--install/piwigo_structure-mysql.sql19
1 files changed, 0 insertions, 19 deletions
diff --git a/install/piwigo_structure-mysql.sql b/install/piwigo_structure-mysql.sql
index a241ab1f4..39184daab 100644
--- a/install/piwigo_structure-mysql.sql
+++ b/install/piwigo_structure-mysql.sql
@@ -30,7 +30,6 @@ CREATE TABLE `piwigo_categories` (
`status` enum('public','private') NOT NULL default 'public',
`site_id` tinyint(4) unsigned default '1',
`visible` enum('true','false') NOT NULL default 'true',
- `uploadable` enum('true','false') NOT NULL default 'false',
`representative_picture_id` mediumint(8) unsigned default NULL,
`uppercats` varchar(255) NOT NULL default '',
`commentable` enum('true','false') NOT NULL default 'true',
@@ -446,21 +445,3 @@ CREATE TABLE `piwigo_users` (
PRIMARY KEY (`id`),
UNIQUE KEY `users_ui1` (`username`)
) TYPE=MyISAM;
-
---
--- Table structure for table `piwigo_waiting`
---
-
-DROP TABLE IF EXISTS `piwigo_waiting`;
-CREATE TABLE `piwigo_waiting` (
- `id` int(10) unsigned NOT NULL auto_increment,
- `storage_category_id` smallint(5) unsigned NOT NULL default '0',
- `file` varchar(255) NOT NULL default '',
- `username` varchar(255) NOT NULL default '',
- `mail_address` varchar(255) NOT NULL default '',
- `date` int(10) unsigned NOT NULL default '0',
- `tn_ext` char(3) default NULL,
- `validated` enum('true','false') NOT NULL default 'false',
- `infos` text,
- PRIMARY KEY (`id`)
-) TYPE=MyISAM;