From 5425f7d3bda18e02e504a1b10905e21939296be5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Mon, 7 Aug 2023 11:52:41 +0200 Subject: [PATCH] Use BIGINT for new table id field MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/user_ldap/lib/Migration/Version1190Date20230706134108.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php b/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php index c6bd795f3e6..51d4510f66c 100644 --- a/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php +++ b/apps/user_ldap/lib/Migration/Version1190Date20230706134108.php @@ -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, -- 2.39.5