Merge pull request #13358 from nextcloud/bugfix/12927-bigint-mtime-storagetime

Install new instances with bigint filecache
This commit is contained in:
Roeland Jago Douma 2019-01-04 19:42:42 +01:00 committed by GitHub
commit 14fcc64c49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -176,14 +176,14 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
'length' => 8,
'default' => 0,
]);
$table->addColumn('mtime', 'integer', [
$table->addColumn('mtime', Type::BIGINT, [
'notnull' => true,
'length' => 4,
'length' => 20,
'default' => 0,
]);
$table->addColumn('storage_mtime', 'integer', [
$table->addColumn('storage_mtime', Type::BIGINT, [
'notnull' => true,
'length' => 4,
'length' => 20,
'default' => 0,
]);
$table->addColumn('encrypted', 'integer', [