dropIndexSQL method

String dropIndexSQL(
  1. IndexDeclaration idx
)

Implementation

String dropIndexSQL(IndexDeclaration idx) {
  return 'DROP INDEX "${idx.indexName}";';
}