renderDropTable method
Implementation
@override
List<String> renderDropTable(String tableName, {bool ifExists = false}) {
final drop = ifExists ? 'DROP TABLE IF EXISTS' : 'DROP TABLE';
return ['$drop "$tableName" CASCADE'];
}
@override
List<String> renderDropTable(String tableName, {bool ifExists = false}) {
final drop = ifExists ? 'DROP TABLE IF EXISTS' : 'DROP TABLE';
return ['$drop "$tableName" CASCADE'];
}