Ignore:
Timestamp:
Jan 13, 2011, 4:24:18 PM (13 years ago)
Author:
plg
Message:

feature 2108 added: user upload removed from core. It will come back as a
"new generation" user upload in the Community plugin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/piwigo_structure-mysql.sql

    r8464 r8651  
    3131  `site_id` tinyint(4) unsigned default '1',
    3232  `visible` enum('true','false') NOT NULL default 'true',
    33   `uploadable` enum('true','false') NOT NULL default 'false',
    3433  `representative_picture_id` mediumint(8) unsigned default NULL,
    3534  `uppercats` varchar(255) NOT NULL default '',
     
    447446  UNIQUE KEY `users_ui1` (`username`)
    448447) TYPE=MyISAM;
    449 
    450 --
    451 -- Table structure for table `piwigo_waiting`
    452 --
    453 
    454 DROP TABLE IF EXISTS `piwigo_waiting`;
    455 CREATE TABLE `piwigo_waiting` (
    456   `id` int(10) unsigned NOT NULL auto_increment,
    457   `storage_category_id` smallint(5) unsigned NOT NULL default '0',
    458   `file` varchar(255) NOT NULL default '',
    459   `username` varchar(255) NOT NULL default '',
    460   `mail_address` varchar(255) NOT NULL default '',
    461   `date` int(10) unsigned NOT NULL default '0',
    462   `tn_ext` char(3) default NULL,
    463   `validated` enum('true','false') NOT NULL default 'false',
    464   `infos` text,
    465   PRIMARY KEY  (`id`)
    466 ) TYPE=MyISAM;
Note: See TracChangeset for help on using the changeset viewer.