diff options
author | Alecks Gates <alecks.g@gmail.com> | 2018-02-17 09:27:25 -0600 |
---|---|---|
committer | Alecks Gates <alecks.g@gmail.com> | 2018-02-17 09:27:25 -0600 |
commit | 3be2c558a51444c39be66dd943c3c2ecd79638f0 (patch) | |
tree | 4bdf4cd3595884875a8440a4b4bf095ad80ca38e /core/Command/Db | |
parent | d953db8683b10bdaf55ab8f3bb8b6b1c42870270 (diff) | |
download | nextcloud-server-3be2c558a51444c39be66dd943c3c2ecd79638f0.tar.gz nextcloud-server-3be2c558a51444c39be66dd943c3c2ecd79638f0.zip |
Add mtime and storage_mtime to db:convert-filecache-bigint
Diffstat (limited to 'core/Command/Db')
-rw-r--r-- | core/Command/Db/ConvertFilecacheBigInt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php index 75d3a48a5c8..5960b7aa9dd 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -54,7 +54,7 @@ class ConvertFilecacheBigInt extends Command { return [ 'activity' => ['activity_id', 'object_id'], 'activity_mq' => ['mail_id'], - 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart'], + 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'mimetypes' => ['id'], 'storages' => ['numeric_id'], ]; |