mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-07 13:55:03 +02:00
[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) git-svn-id: http://piwigo.org/svn/trunk@1028 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -324,3 +324,17 @@ CREATE TABLE `phpwebgallery_waiting` (
|
||||
PRIMARY KEY (`id`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
--
|
||||
-- Table structure for table `phpwebgallery_user_mail_notification`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `phpwebgallery_user_mail_notification`;
|
||||
CREATE TABLE `phpwebgallery_user_mail_notification`
|
||||
(
|
||||
`user_id` smallint(5) NOT NULL default '0',
|
||||
`check_key` varchar(128) binary NOT NULL,
|
||||
`enabled` enum('true','false') NOT NULL default 'false',
|
||||
`last_send` datetime default NULL,
|
||||
PRIMARY KEY (`user_id`),
|
||||
UNIQUE KEY `uidx_check_key` (`check_key`)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
Reference in New Issue
Block a user