root/application.register/update.sql @ 310

Revision 310, 0.6 kB (checked in by MDMAN, 5 years ago)

BugFixes?

Line 
1ALTER TABLE `wcf1_group_application` DROP `disableNotification`;
2
3CREATE TABLE IF NOT EXISTS wcf1_group_application_mail (
4  userID int(10) unsigned NOT NULL,
5  groupID int(10) unsigned NOT NULL,
6  displayNotification tinyint(1) unsigned NOT NULL DEFAULT 0,
7  emailNotification tinyint(1) unsigned NOT NULL DEFAULT 0,
8  PRIMARY KEY (userID,groupID)
9) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10
11CREATE TABLE IF NOT EXISTS wcf1_group_application_notification (
12  applicationID int(11) unsigned NOT NULL,
13  groupID int(10) unsigned NOT NULL,
14  PRIMARY KEY (applicationID,userID)
15) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Note: See TracBrowser for help on using the browser.