diff options
author | Robin Appelman <robin@icewind.nl> | 2019-10-25 18:21:57 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-11-13 11:30:44 +0100 |
commit | 842da3f18364c50ca907f4ac984ded1ecafd35fe (patch) | |
tree | 43b50bb78eab7f9b8cec9fbd008874a844ad62e1 /core/Migrations | |
parent | d3b6dbc0bc1aa2c81ca5e526d597ddbfca762cdf (diff) | |
download | nextcloud-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.php | 2 |
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, |