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:
Diffstat (limited to 'apps/files_sharing/lib/Migration/Version11300Date20201120141438.php')
-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;
}
-
}