diff options
author | vdigital <vdigital@piwigo.org> | 2006-12-16 09:30:44 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2006-12-16 09:30:44 +0000 |
commit | 0bd0969499ceffd3973d49141b5f37dd4433d49a (patch) | |
tree | 5d0772bd0052d2fe6e36420921f7bdd1e89af078 /install | |
parent | 53d1b22c76f4e16b1e16cdca9dd785a0b2f1e859 (diff) |
Table structure for Web service
git-svn-id: http://piwigo.org/svn/trunk@1662 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/phpwebgallery_structure.sql | 20 |
1 files changed, 20 insertions, 0 deletions
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'; + |