Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-11-20 17:38:59 +0300
committerJulius Härtl <jus@bitgrid.net>2020-12-14 13:10:58 +0300
commit58f6238af268db46b37a9c28c90d01944f6e6c6b (patch)
tree0bc4d6265cec3db95ecebffdd339a51a810cf942 /apps/files_sharing/lib
parent40a8bb53b1c231876a09e0d43737905234416e8d (diff)
Move columns to bigint
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/Migration/Version11300Date20201120141438.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/files_sharing/lib/Migration/Version11300Date20201120141438.php b/apps/files_sharing/lib/Migration/Version11300Date20201120141438.php
index 84c8721dec3..61833249828 100644
--- a/apps/files_sharing/lib/Migration/Version11300Date20201120141438.php
+++ b/apps/files_sharing/lib/Migration/Version11300Date20201120141438.php
@@ -18,11 +18,11 @@ class Version11300Date20201120141438 extends SimpleMigrationStep {
if (!$schema->hasTable('share_external')) {
$table = $schema->createTable('share_external');
- $table->addColumn('id', Types::INTEGER, [
+ $table->addColumn('id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
]);
- $table->addColumn('parent', Types::INTEGER, [
+ $table->addColumn('parent', Types::BIGINT, [
'notnull' => false,
'default' => -1,
]);
@@ -86,5 +86,4 @@ class Version11300Date20201120141438 extends SimpleMigrationStep {
return $schema;
}
-
}