From ccb01b19a0196b1cfd02fd004deebe63915287ac Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 29 Sep 2023 17:39:42 +0200 Subject: fix(sqlite): Remove some old SQLite cheats - Doctrine correctly forces integer for autoincrement by now - Doctrine correctly maintains integer types by now Signed-off-by: Joas Schilling --- tests/lib/DB/MigratorTest.php | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/lib') diff --git a/tests/lib/DB/MigratorTest.php b/tests/lib/DB/MigratorTest.php index 3e6fb66c4c2..8447e0931e7 100644 --- a/tests/lib/DB/MigratorTest.php +++ b/tests/lib/DB/MigratorTest.php @@ -130,10 +130,6 @@ class MigratorTest extends \Test\TestCase { return $config; } - private function isSQLite() { - return $this->connection->getDatabasePlatform() instanceof SqlitePlatform; - } - public function testUpgrade() { [$startSchema, $endSchema] = $this->getDuplicateKeySchemas(); $migrator = $this->getMigrator(); -- cgit v1.2.3