aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-08-07 11:52:41 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-08-10 10:57:36 +0200
commit5425f7d3bda18e02e504a1b10905e21939296be5 (patch)
treeb6de23a674dc55658ea21de8a1e824f96aa1c20a /apps
parent7732de75eeea0f549bb65378f33a05d2aa1a38db (diff)
downloadnextcloud-server-5425f7d3bda18e02e504a1b10905e21939296be5.tar.gz
nextcloud-server-5425f7d3bda18e02e504a1b10905e21939296be5.zip
Use BIGINT for new table id field
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-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,