mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 17:56:52 +02:00
[ticket/11103] Remove Primary Key on user_notifications table
PHPBB3-11103
This commit is contained in:
@@ -1136,8 +1136,7 @@ CREATE TABLE phpbb_user_notifications (
|
||||
item_id INT4 DEFAULT '0' NOT NULL CHECK (item_id >= 0),
|
||||
user_id INT4 DEFAULT '0' NOT NULL CHECK (user_id >= 0),
|
||||
method varchar(255) DEFAULT '' NOT NULL,
|
||||
notify INT2 DEFAULT '1' NOT NULL CHECK (notify >= 0),
|
||||
PRIMARY KEY (item_type, item_id, user_id, method)
|
||||
notify INT2 DEFAULT '1' NOT NULL CHECK (notify >= 0)
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user