From 0bd0969499ceffd3973d49141b5f37dd4433d49a Mon Sep 17 00:00:00 2001 From: vdigital Date: Sat, 16 Dec 2006 09:30:44 +0000 Subject: Table structure for Web service git-svn-id: http://piwigo.org/svn/trunk@1662 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/phpwebgallery_structure.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index dc1d69f0f..628f85c38 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -395,3 +395,23 @@ CREATE TABLE `phpwebgallery_waiting` ( PRIMARY KEY (`id`) ) TYPE=MyISAM; +-- +-- Table structure for table `phpwebgallery_ws_access` +-- + +DROP TABLE IF EXISTS phpwebgallery_ws_access; +CREATE TABLE phpwebgallery_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, + high enum('true','false') NOT NULL default 'true', + normal enum('true','false') NOT NULL default 'true', + `limit` smallint(5) unsigned default NULL, + `comment` varchar(255) default NULL, + PRIMARY KEY (id), + UNIQUE KEY name (name) +) ENGINE=MyISAM COMMENT='Access for Web Services'; + -- cgit v1.2.3