aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mssql_schema.sql
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-04-29 21:22:07 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-04-29 21:22:07 -0500
commit33287a73609a99f33f3d0718fceaf72e39d5283e (patch)
treec6906331d568a7dc3814f1c3def3e9a8ab408d2a /phpBB/install/schemas/mssql_schema.sql
parent4c5e51e379f770d9bd3610e7235dafcb985494e1 (diff)
downloadforums-33287a73609a99f33f3d0718fceaf72e39d5283e.tar
forums-33287a73609a99f33f3d0718fceaf72e39d5283e.tar.gz
forums-33287a73609a99f33f3d0718fceaf72e39d5283e.tar.bz2
forums-33287a73609a99f33f3d0718fceaf72e39d5283e.tar.xz
forums-33287a73609a99f33f3d0718fceaf72e39d5283e.zip
[ticket/11413] Undo editing the user_notifications table
item_type is not equivalent to notification_type_name, it can be a generic string (typically used to be able to subscribe to multiple notification types while only subscribing to one item PHPBB3-11413
Diffstat (limited to 'phpBB/install/schemas/mssql_schema.sql')
-rw-r--r--phpBB/install/schemas/mssql_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mssql_schema.sql b/phpBB/install/schemas/mssql_schema.sql
index e869cbd1b5..8465dc4d72 100644
--- a/phpBB/install/schemas/mssql_schema.sql
+++ b/phpBB/install/schemas/mssql_schema.sql
@@ -1591,7 +1591,7 @@ GO
Table: 'phpbb_user_notifications'
*/
CREATE TABLE [phpbb_user_notifications] (
- [notification_type_id] [int] DEFAULT (0) NOT NULL ,
+ [item_type] [varchar] (255) DEFAULT ('') NOT NULL ,
[item_id] [int] DEFAULT (0) NOT NULL ,
[user_id] [int] DEFAULT (0) NOT NULL ,
[method] [varchar] (255) DEFAULT ('') NOT NULL ,