Skip to content

Commit

Permalink
integers might become big
Browse files Browse the repository at this point in the history
  • Loading branch information
Grotax committed Dec 19, 2024
1 parent 356a955 commit 1b1567f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migration/Version250200Date20241219085150.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt

$table = $schema->getTable('news_feeds');
if (!$table->hasColumn('next_update_time')) {
$table->addColumn('next_update_time', 'integer', [
$table->addColumn('next_update_time', 'bigint', [
'notnull' => false
]);
}
Expand Down

0 comments on commit 1b1567f

Please sign in to comment.