Commit a1348e8b authored by Guilherme Blanco's avatar Guilherme Blanco

Use double quotes for names

parent 127cb83e
......@@ -155,7 +155,7 @@ class SchemaException extends DBALException
public static function uniqueConstraintDoesNotExist($constraintName, $table)
{
return new self(
sprintf("There exists no unique constraint with the name '%s' on table '%s'.", $constraintName, $table),
sprintf('There exists no unique constraint with the name "%s" on table "%s".', $constraintName, $table),
self::CONSTRAINT_DOESNT_EXIST
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment