diff --git a/src/Storage/IntColumnHandlerSQLite.php b/src/Storage/IntColumnHandlerSQLite.php index 292ada7..64791b8 100644 --- a/src/Storage/IntColumnHandlerSQLite.php +++ b/src/Storage/IntColumnHandlerSQLite.php @@ -45,7 +45,7 @@ class IntColumnHandlerSQLite extends IntColumnHandler { // Simpletest for example prefixes with a database name but SQLite does // not support referencing databases in the body of the trigger (even if it // is the same database the triggering table is in). - $trigger = array_pop($parts); + $trigger = trim(array_pop($parts), '"'); $this->connection->query("DROP TRIGGER IF EXISTS $trigger"); }