Skip to content

Commit 7996af7

Browse files
committed
enhance: fix SQL query formatting in Grammar.php
1 parent 1c47406 commit 7996af7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Database/Schema/Grammar.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ public function compileTableExists($schema, $table)
4040
WHERE
4141
type = \'U\'
4242
AND
43-
name = \'%s\';
44-
', $schema ? $schema.'.'.$table : $table);
43+
name = \'%s\'', $table);
4544
}
4645

4746
/**

0 commit comments

Comments
 (0)