bug fixed: following r2516, remove ws_access table from database script

creation.


git-svn-id: http://piwigo.org/svn/trunk@2518 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2008-09-11 22:07:33 +00:00
parent d39db9aaaf
commit bc290fd6b4
-19
View File
@@ -438,22 +438,3 @@ CREATE TABLE `piwigo_waiting` (
`infos` text,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
--
-- Table structure for table `piwigo_ws_access`
--
DROP TABLE IF EXISTS `piwigo_ws_access`;
CREATE TABLE `piwigo_ws_access` (
`id` smallint(5) unsigned NOT NULL auto_increment,
`name` varchar(32) NOT NULL default '',
`access` varchar(255) default NULL,
`start` datetime default NULL,
`end` datetime default NULL,
`request` varchar(255) default NULL,
`limit` smallint(5) unsigned default NULL,
`comment` varchar(255) default NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ws_access_ui1` (`name`)
) TYPE=MyISAM COMMENT='Access for Web Services';