diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-08-21 00:44:27 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-21 00:44:27 +0200 |
commit | b2701f00e9e882c301625861df9c859c6c620375 (patch) | |
tree | 624354dfa7de81b468313b378f5bc5edaf4beee8 /phpBB/install/schemas | |
parent | 19aecaf7c7d2e4532f9b79a5eb1bc32e8c6fae45 (diff) | |
parent | 31aac66f5aca218254a6ff199c21a282bc6059bc (diff) | |
download | forums-b2701f00e9e882c301625861df9c859c6c620375.tar forums-b2701f00e9e882c301625861df9c859c6c620375.tar.gz forums-b2701f00e9e882c301625861df9c859c6c620375.tar.bz2 forums-b2701f00e9e882c301625861df9c859c6c620375.tar.xz forums-b2701f00e9e882c301625861df9c859c6c620375.zip |
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index c32e2f825a..f0d8c1261a 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -813,9 +813,9 @@ INSERT INTO phpbb_profile_fields (field_name, field_type, field_ident, field_len INSERT INTO phpbb_profile_fields (field_name, field_type, field_ident, field_length, field_minlen, field_maxlen, field_novalue, field_default_value, field_validation, field_required, field_show_novalue, field_show_on_reg, field_show_on_pm, field_show_on_vt, field_show_on_ml, field_show_profile, field_hide, field_no_view, field_active, field_order, field_is_contact, field_contact_desc, field_contact_url) VALUES ('phpbb_googleplus', 'profilefields.type.googleplus', 'phpbb_googleplus', '20', '3', '255', '', '', '[\w]+', 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 13, 1, 'VIEW_GOOGLEPLUS_PROFILE', 'http://plus.google.com/%s'); # User Notification Options (for first user) -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('post', 0, 2, ''); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('post', 0, 2, 'email'); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('topic', 0, 2, ''); -INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('topic', 0, 2, 'email'); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('notification.type.post', 0, 2, ''); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('notification.type.post', 0, 2, 'notification.method.email'); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('notification.type.topic', 0, 2, ''); +INSERT INTO phpbb_user_notifications (item_type, item_id, user_id, method) VALUES('notification.type.topic', 0, 2, 'notification.method.email'); # POSTGRES COMMIT # |