List<String> deleteIndexFromColumn(SchemaTable table, SchemaColumn column)

Source

List<String> deleteIndexFromColumn(SchemaTable table, SchemaColumn column) {
  return ["DROP INDEX ${_indexNameForColumn(table.name, column)}"];
}