diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-11-18 15:29:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 15:29:49 +0100 |
commit | 5320f08cd2eab3926104a314fb76b2de222d1d7b (patch) | |
tree | dc2965325422b4fedc6f5a765004063eb8ebf61e /core | |
parent | 497737f28f8ed176496c2ed4997ecb7d83eac2e8 (diff) | |
parent | 8800a7e89097a4994b99d8a8fc5023c53c06946e (diff) | |
download | nextcloud-server-5320f08cd2eab3926104a314fb76b2de222d1d7b.tar.gz nextcloud-server-5320f08cd2eab3926104a314fb76b2de222d1d7b.zip |
Merge pull request #17765 from nextcloud/filecache-extension
Upload time and Creation time
Diffstat (limited to 'core')
-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, |