Commit 3b5ba65b authored by Benjamin Eberlei's avatar Benjamin Eberlei

Remove code that is master, not for merge into 2.2

parent f884b305
...@@ -560,23 +560,6 @@ class MySqlPlatform extends AbstractPlatform ...@@ -560,23 +560,6 @@ class MySqlPlatform extends AbstractPlatform
return $sql; return $sql;
} }
/**
* @override
*/
protected function getCreateIndexSQLFlags(Index $index)
{
$type = '';
if ($index->isUnique()) {
$type .= 'UNIQUE ';
} else if ($index->hasFlag('fulltext')) {
$type .= 'FULLTEXT ';
}
return $type;
}
/** /**
* Obtain DBMS specific SQL code portion needed to declare an integer type * Obtain DBMS specific SQL code portion needed to declare an integer type
* field to be used in statements like CREATE TABLE. * field to be used in statements like CREATE 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