aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/user_ldap/lib/Migration/Version1190Date20230706134108.php3
1 files changed, 1 insertions, 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,