From bdaa352f74b44eecbc82304b21540315810ebe1f Mon Sep 17 00:00:00 2001
From: Jonas Heinrich <onny@project-insanity.org>
Date: Wed, 31 Mar 2021 17:15:36 +0200
Subject: [PATCH] trying to fix app upgrade issue

---
 lib/Migration/Version000100Date20210201162900.php | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/lib/Migration/Version000100Date20210201162900.php b/lib/Migration/Version000100Date20210201162900.php
index 559fe0f..2b6cc09 100644
--- a/lib/Migration/Version000100Date20210201162900.php
+++ b/lib/Migration/Version000100Date20210201162900.php
@@ -70,19 +70,16 @@ class Version000100Date20210201162900 extends SimpleMigrationStep {
 			'notnull' => true,
 		]);
 		if ($table->hasColumn('playtime')) {
-			$table->changeColumn('playtime', [
-				'type' => Type::getType('integer')
-			]);
+			$table->dropColumn('playtime');
+			$table->addColumn('playtime', 'integer');
 		};
 		if ($table->hasColumn('duration')) {
-			$table->changeColumn('duration', [
-				'type' => Type::getType('integer')
-			]);
+			$table->dropColumn('duration');
+			$table->addColumn('duration', 'integer');
 		};
 		if ($table->hasColumn('lastplayed')) {
-			$table->changeColumn('lastplayed', [
-				'type' => Type::getType('integer')
-			]);
+			$table->dropColumn('lastplayed');
+			$table->addColumn('lastplayed', 'integer');
 		};
 		if ($table->hasColumn('author')) {
 			$table->dropColumn('author');
-- 
GitLab