Table structure for Web service
git-svn-id: http://piwigo.org/svn/trunk@1662 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
53d1b22c76
commit
0bd0969499
1 changed files with 20 additions and 0 deletions
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue