diff options
author | plegall <plg@piwigo.org> | 2008-09-11 22:07:33 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2008-09-11 22:07:33 +0000 |
commit | bc290fd6b40112e303439bfb3a44d7c63127786f (patch) | |
tree | 05946e4fd34b4f14321c19ae320765746a95ffaa /install/piwigo_structure.sql | |
parent | d39db9aaaf43eaedd634a7a5b7d06bcb69d41152 (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | install/piwigo_structure.sql | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/install/piwigo_structure.sql b/install/piwigo_structure.sql index 996c881da..0c7d6b53e 100644 --- a/install/piwigo_structure.sql +++ b/install/piwigo_structure.sql @@ -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'; - |