Commit f23e0eb9 authored by Juozas Kaziukenas's avatar Juozas Kaziukenas

Removed quoteIdentifier() calls from platform

parent d344dfe2
...@@ -140,9 +140,9 @@ class MsSqlPlatform extends AbstractPlatform ...@@ -140,9 +140,9 @@ class MsSqlPlatform extends AbstractPlatform
} }
return "IF EXISTS (SELECT * FROM sysobjects WHERE name = '$index') return "IF EXISTS (SELECT * FROM sysobjects WHERE name = '$index')
ALTER TABLE " . $this->quoteIdentifier($table) . " DROP CONSTRAINT " . $this->quoteIdentifier($index) . " ALTER TABLE " . $table . " DROP CONSTRAINT " . $index . "
ELSE ELSE
DROP INDEX " . $this->quoteIdentifier($index) . " ON " . $this->quoteIdentifier($table); DROP INDEX " . $index . " ON " . $table;
} }
} }
......
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