Merge pull request #13358 from nextcloud/bugfix/12927-bigint-mtime-storagetime
Install new instances with bigint filecache
This commit is contained in:
commit
14fcc64c49
1 changed files with 4 additions and 4 deletions
|
@ -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', [
|
||||
|
|
Loading…
Reference in a new issue