Install new instances with bigint filecache

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2019-01-04 17:07:27 +01:00
parent d2bc85728d
commit f15df262c9
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
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', [