void dropIndex(String table, String fieldName) { String idx = makeIndexName(table, [fieldName]); String sql = "DROP INDEX IF EXISTS $idx"; execute(sql); }