aboutsummaryrefslogtreecommitdiffstats
path: root/core/Migrations
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2019-10-25 18:21:57 +0200
committerRobin Appelman <robin@icewind.nl>2019-11-13 11:30:44 +0100
commit842da3f18364c50ca907f4ac984ded1ecafd35fe (patch)
tree43b50bb78eab7f9b8cec9fbd008874a844ad62e1 /core/Migrations
parentd3b6dbc0bc1aa2c81ca5e526d597ddbfca762cdf (diff)
downloadnextcloud-server-842da3f18364c50ca907f4ac984ded1ecafd35fe.tar.gz
nextcloud-server-842da3f18364c50ca907f4ac984ded1ecafd35fe.zip
store filecache extension fields
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version17000Date20190514105811.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version17000Date20190514105811.php b/core/Migrations/Version17000Date20190514105811.php
index 7f8084f9832..1cf4c9f5a37 100644
--- a/core/Migrations/Version17000Date20190514105811.php
+++ b/core/Migrations/Version17000Date20190514105811.php
@@ -44,7 +44,7 @@ class Version17000Date20190514105811 extends SimpleMigrationStep {
$schema = $schemaClosure();
if(!$schema->hasTable('filecache_extended')) {
$table = $schema->createTable('filecache_extended');
- $table->addColumn('fileid', Type::INTEGER, [
+ $table->addColumn('fileid', Type::BIGINT, [
'notnull' => true,
'length' => 4,
'unsigned' => true,