1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 15:01:33 +02:00

[ticket/17507] Add id as primary key, fix schema_create_primary_key() method

PHPBB-17507
This commit is contained in:
rxu
2025-07-05 23:05:13 +07:00
parent e4cd3ac744
commit 38ee655b2a
2 changed files with 7 additions and 3 deletions

View File

@@ -39,7 +39,10 @@ class remove_jabber extends migration
$this->table_prefix . 'user_notifications' => [
'id' => ['ULINT', null, 'auto_increment'],
],
]
],
'add_primary_keys' => [
$this->table_prefix . 'user_notifications' => ['id'],
],
];
}