1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/17010] Add column for user push subscriptions

PHPBB3-17010
This commit is contained in:
Marc Alexander
2022-08-31 20:06:07 +02:00
parent 1c64c695a9
commit 83cf915758
2 changed files with 8 additions and 3 deletions

View File

@@ -44,6 +44,13 @@ class add_webpush extends migration
'PRIMARY_KEY' => ['notification_type_id', 'item_id', 'item_parent_id', 'user_id'],
],
],
'add_columns' => [
$this->table_prefix . 'users' => [
'COLUMNS' => [
'user_push_subscriptions' => ['MTEXT_UNI', '']
],
],
],
];
}