Skip to content

Commit

Permalink
Fix tabs in string.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 9, 2015
1 parent 9df927f commit e6dae1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Database/Schema/MysqlSchema.php
Expand Up @@ -221,9 +221,9 @@ public function convertIndexDescription(Table $table, $row)
public function describeForeignKeySql($tableName, $config)
{
$sql = 'SELECT * FROM information_schema.key_column_usage AS kcu
INNER JOIN information_schema.referential_constraints AS rc
ON (kcu.CONSTRAINT_NAME = rc.CONSTRAINT_NAME)
WHERE kcu.TABLE_SCHEMA = ? AND kcu.TABLE_NAME = ? and rc.TABLE_NAME = ?';
INNER JOIN information_schema.referential_constraints AS rc
ON (kcu.CONSTRAINT_NAME = rc.CONSTRAINT_NAME)
WHERE kcu.TABLE_SCHEMA = ? AND kcu.TABLE_NAME = ? and rc.TABLE_NAME = ?';

return [$sql, [$config['database'], $tableName, $tableName]];
}
Expand Down

0 comments on commit e6dae1d

Please sign in to comment.