Changeset 1584 for trunk/install


Ignore:
Timestamp:
Oct 31, 2006, 3:41:32 AM (17 years ago)
Author:
rvelices
Message:

plugins go now in the #plugins table

Location:
trunk/install
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/config.sql

    r1578 r1584  
    2323INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('history_guest','true','keep a history of guest visits on your website');
    2424INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('login_history','true','keep a history of user logins on your website');
    25 INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('active_plugins','','activated plugins');
    2625-- Notification by mail
    2726INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('nbm_send_mail_as','','Send mail as param value for notification by mail');
  • trunk/install/phpwebgallery_structure.sql

    r1583 r1584  
    180180
    181181--
     182-- Table structure for table `phpwebgallery_plugins`
     183--
     184
     185DROP TABLE IF EXISTS `phpwebgallery_plugins`;
     186CREATE TABLE `phpwebgallery_plugins` (
     187  `id` varchar(64) binary NOT NULL default '',
     188  `state` enum('inactive','active') NOT NULL default 'inactive',
     189  `version` varchar(64) NOT NULL default '0',
     190  PRIMARY KEY  (`id`)
     191) TYPE=MyISAM;
     192
     193--
    182194-- Table structure for table `phpwebgallery_rate`
    183195--
Note: See TracChangeset for help on using the changeset viewer.