From da5d203768fceddb8a6a028d84d8338e9d35ebd2 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Tue, 31 Oct 2023 14:17:56 +0000 Subject: [PATCH] - Small quick fix on espaceIdentifier whichi misses a type --- src/Adapter/SQLite.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Adapter/SQLite.php b/src/Adapter/SQLite.php index 3cae7fb..d200bfb 100644 --- a/src/Adapter/SQLite.php +++ b/src/Adapter/SQLite.php @@ -70,6 +70,7 @@ class SQLite implements AdapterInterface, MigrateInterface, SqlAdapterInterface public function escapeIdentifier(string $segment, int $type) : string { switch($type) { + default: case static::IDENTIFIER_DATABASE: case static::IDENTIFIER_TABLE: case static::IDENTIFIER_FIELD: