aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-09-29 17:39:42 +0200
committerJoas Schilling <coding@schilljs.com>2023-10-06 15:29:27 +0200
commitccb01b19a0196b1cfd02fd004deebe63915287ac (patch)
tree642949fbe7b0943650b88069c4d129036b0951a5 /tests
parentf8ee6c4769900736dcc0642b9f85199f7d1bd1a9 (diff)
downloadnextcloud-server-ccb01b19a0196b1cfd02fd004deebe63915287ac.tar.gz
nextcloud-server-ccb01b19a0196b1cfd02fd004deebe63915287ac.zip
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 <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/DB/MigratorTest.php4
1 files changed, 0 insertions, 4 deletions
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();