Use BIGINT for new table id field

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/39446/head
Côme Chilliet 2023-08-07 11:52:41 +07:00
parent 7732de75ee
commit 5425f7d3bd
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 1 additions and 2 deletions

@ -48,10 +48,9 @@ class Version1190Date20230706134108 extends SimpleMigrationStep {
if (!$schema->hasTable('ldap_group_membership')) {
$table = $schema->createTable('ldap_group_membership');
$table->addColumn('id', 'integer', [
$table->addColumn('id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
'length' => 4,
]);
$table->addColumn('groupid', Types::STRING, [
'notnull' => true,