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}) {
  return [
    jsonEncode({'_vania_migration': 'dropCollection', 'name': tableName}),
  ];
}