Skip to content

Commit 14fcc64

Browse files
authored
Merge pull request #13358 from nextcloud/bugfix/12927-bigint-mtime-storagetime
Install new instances with bigint filecache
2 parents f736b34 + f15df26 commit 14fcc64

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

core/Migrations/Version13000Date20170718121200.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $op
176176
'length' => 8,
177177
'default' => 0,
178178
]);
179-
$table->addColumn('mtime', 'integer', [
179+
$table->addColumn('mtime', Type::BIGINT, [
180180
'notnull' => true,
181-
'length' => 4,
181+
'length' => 20,
182182
'default' => 0,
183183
]);
184-
$table->addColumn('storage_mtime', 'integer', [
184+
$table->addColumn('storage_mtime', Type::BIGINT, [
185185
'notnull' => true,
186-
'length' => 4,
186+
'length' => 20,
187187
'default' => 0,
188188
]);
189189
$table->addColumn('encrypted', 'integer', [

0 commit comments

Comments
 (0)