Changeset 2518 for trunk/install


Ignore:
Timestamp:
Sep 12, 2008, 12:07:33 AM (16 years ago)
Author:
plg
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/piwigo_structure.sql

    r2517 r2518  
    439439  PRIMARY KEY  (`id`)
    440440) TYPE=MyISAM;
    441 
    442 --
    443 -- Table structure for table `piwigo_ws_access`
    444 --
    445 
    446 DROP TABLE IF EXISTS `piwigo_ws_access`;
    447 CREATE TABLE `piwigo_ws_access` (
    448   `id` smallint(5) unsigned NOT NULL auto_increment,
    449   `name` varchar(32) NOT NULL default '',
    450   `access` varchar(255) default NULL,
    451   `start` datetime default NULL,
    452   `end` datetime default NULL,
    453   `request` varchar(255) default NULL,
    454   `limit` smallint(5) unsigned default NULL,
    455   `comment` varchar(255) default NULL,
    456   PRIMARY KEY  (`id`),
    457   UNIQUE KEY `ws_access_ui1` (`name`)
    458 ) TYPE=MyISAM COMMENT='Access for Web Services';
    459 
Note: See TracChangeset for help on using the changeset viewer.