dropIndex method

Future<void> dropIndex(
  1. String tableName,
  2. String indexName
)

Implementation

Future<void> dropIndex(String tableName, String indexName) async {
  final statements = _requireAdapter.renderDropIndex(tableName, indexName);
  await _executeStatements(statements);
}