Skip to content

Commit 3e70e39

Browse files
author
Afonso Gloeden
committed
Problem with column type conversion in migrations fixed
1 parent d40cece commit 3e70e39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Database/Schema/SybaseGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class SybaseGrammar extends Grammar {
2929
*/
3030
public function compileTableExists()
3131
{
32-
return "select * from sysobjects where type = 'U' and name = ?";
32+
return "select * from sysobjects where type = 'U' and name = '?'";
3333
}
3434

3535
/**

0 commit comments

Comments
 (0)