diff --git a/lib/Migration/Version000100Date20210201162900.php b/lib/Migration/Version000100Date20210201162900.php index 2b6cc0945703781587ba548663437a279b9967e9..3eac2b86aa8d410c07596699c4be55aad65b7174 100644 --- a/lib/Migration/Version000100Date20210201162900.php +++ b/lib/Migration/Version000100Date20210201162900.php @@ -58,7 +58,7 @@ class Version000100Date20210201162900 extends SimpleMigrationStep { $table->addColumn('lastpub', 'string', [ 'notnull' => false, ]); - $table->addColumn('dateadded', 'integer', [ + $table->addColumn('dateadded', 'bigint', [ 'notnull' => false, ]); @@ -79,7 +79,7 @@ class Version000100Date20210201162900 extends SimpleMigrationStep { }; if ($table->hasColumn('lastplayed')) { $table->dropColumn('lastplayed'); - $table->addColumn('lastplayed', 'integer'); + $table->addColumn('lastplayed', 'bigint'); }; if ($table->hasColumn('author')) { $table->dropColumn('author');