Changeset 1028 for trunk/install


Ignore:
Timestamp:
Feb 6, 2006, 11:59:30 PM (18 years ago)
Author:
rub
Message:

[NBM] Step 2: Add new table user_mail_notification (update, install, constants, delete user

+ Correction delete user (table user_feed missing, table sessions must be removed)

Location:
trunk/install
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/phpwebgallery_structure.sql

    r1020 r1028  
    325325) TYPE=MyISAM;
    326326
     327--
     328-- Table structure for table `phpwebgallery_user_mail_notification`
     329--
     330
     331DROP TABLE IF EXISTS `phpwebgallery_user_mail_notification`;
     332CREATE TABLE `phpwebgallery_user_mail_notification`
     333(
     334  `user_id` smallint(5) NOT NULL default '0',
     335  `check_key` varchar(128) binary NOT NULL,
     336  `enabled` enum('true','false') NOT NULL default 'false',
     337  `last_send` datetime default NULL,
     338  PRIMARY KEY  (`user_id`),
     339  UNIQUE KEY `uidx_check_key` (`check_key`)
     340) TYPE=MyISAM;
Note: See TracChangeset for help on using the changeset viewer.