diff options
| author | lsces <lester@lsces.co.uk> | 2026-02-04 19:53:46 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-02-04 19:53:46 +0000 |
| commit | ec10a53d7b9d0ac85dd0b41122846e022b8eb813 (patch) | |
| tree | cb540edb68df29dccd1dda9cffe81ceb96d8c738 /src | |
| parent | 3c293d5eaa5659f2bafac7406d52668a4cc649b0 (diff) | |
| download | illuminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.tar.gz illuminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.tar.bz2 illuminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.zip | |
Replace cluge to replace ? with table name since it's now passed in the function call
Diffstat (limited to 'src')
| -rwxr-xr-x | src/Schema/Grammars/FirebirdGrammar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Schema/Grammars/FirebirdGrammar.php b/src/Schema/Grammars/FirebirdGrammar.php index 672726a..17037fb 100755 --- a/src/Schema/Grammars/FirebirdGrammar.php +++ b/src/Schema/Grammars/FirebirdGrammar.php @@ -43,7 +43,7 @@ class FirebirdGrammar extends Grammar */ public function compileTableExists($schema = '', $table = '') { - return 'select rdb$relation_name from rdb$relations where rdb$relation_name = ?'; + return "select rdb\$relation_name from rdb\$relations where rdb\$relation_name = '$table'"; } /** |
