BUGFIX: Added double quotes to column names in automatically generated indexes for many_many relationships (this time in the right place, should not interfere with index name - all tests pass)

This commit is contained in:
Fabian Schmengler 2012-06-02 15:38:12 +02:00
parent 5499079c1c
commit afdd8683e4

View File

@ -391,7 +391,7 @@ abstract class SS_Database {
//DB Abstraction: remove this ===true option as a possibility?
if($spec === true) {
$spec = "($index)";
$spec = "(\"$index\")";
}
//Indexes specified as arrays cannot be checked with this line: (it flattens out the array)