1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11103] Remove Primary Key on user_notifications table

PHPBB3-11103
This commit is contained in:
Nathan Guse
2013-01-31 10:14:42 -06:00
parent bd49942552
commit b567e09630
9 changed files with 5 additions and 34 deletions

View File

@@ -884,8 +884,7 @@ CREATE TABLE phpbb_user_notifications (
item_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
method varbinary(255) DEFAULT '' NOT NULL,
notify tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
PRIMARY KEY (item_type, item_id, user_id, method)
notify tinyint(1) UNSIGNED DEFAULT '1' NOT NULL
);