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-08 18:05:53 +0300
commit8f6c2ec357dd9fcc71f2f8fb69a325004b36b98b (patch)
tree49041577e8e8764821199928ec340c4a4101b381 /apps/federatedfilesharing/lib
parentbb21e87d2321af184f720200b4f8826892f00055 (diff)
Move columns to bigint
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/federatedfilesharing/lib')
-rw-r--r--apps/federatedfilesharing/lib/Migration/Version1010Date20200630191755.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/federatedfilesharing/lib/Migration/Version1010Date20200630191755.php b/apps/federatedfilesharing/lib/Migration/Version1010Date20200630191755.php
index b8d498f3228..7376c8d9e73 100644
--- a/apps/federatedfilesharing/lib/Migration/Version1010Date20200630191755.php
+++ b/apps/federatedfilesharing/lib/Migration/Version1010Date20200630191755.php
@@ -44,9 +44,8 @@ class Version1010Date20200630191755 extends SimpleMigrationStep {
if (!$schema->hasTable('federated_reshares')) {
$table = $schema->createTable('federated_reshares');
- $table->addColumn('share_id', Types::INTEGER, [
+ $table->addColumn('share_id', Types::BIGINT, [
'notnull' => true,
- 'length' => 4,
]);
$table->addColumn('remote_id', Types::STRING, [
'notnull' => true,