aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_40_schema.sql
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-12-15 21:08:26 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2012-12-15 22:06:32 -0600
commitfad6bc5a7e58ddd370b88f73712de350b61bca29 (patch)
tree611d148fbb763acab35abbf7d70720e99667cbf9 /phpBB/install/schemas/mysql_40_schema.sql
parent47bed3321634d888a51a611e6586c012a27eb1eb (diff)
downloadforums-fad6bc5a7e58ddd370b88f73712de350b61bca29.tar
forums-fad6bc5a7e58ddd370b88f73712de350b61bca29.tar.gz
forums-fad6bc5a7e58ddd370b88f73712de350b61bca29.tar.bz2
forums-fad6bc5a7e58ddd370b88f73712de350b61bca29.tar.xz
forums-fad6bc5a7e58ddd370b88f73712de350b61bca29.zip
[ticket/11103] unread -> notification_read
PHPBB3-11103
Diffstat (limited to 'phpBB/install/schemas/mysql_40_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_40_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/mysql_40_schema.sql b/phpBB/install/schemas/mysql_40_schema.sql
index 140cb354a7..8163b7a051 100644
--- a/phpBB/install/schemas/mysql_40_schema.sql
+++ b/phpBB/install/schemas/mysql_40_schema.sql
@@ -445,12 +445,12 @@ CREATE TABLE phpbb_notifications (
item_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
item_parent_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
- unread tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
+ notification_read tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
notification_time int(11) UNSIGNED DEFAULT '1' NOT NULL,
data blob NOT NULL,
PRIMARY KEY (notification_id),
KEY item_ident (item_type, item_id),
- KEY user (user_id, unread)
+ KEY user (user_id, notification_read)
);