renderDropTable method

  1. @override
List<String> renderDropTable(
  1. String tableName, {
  2. bool ifExists = false,
})
override

Implementation

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