dropTable method

Future<void> dropTable(
  1. String tableName
)

Helper to drop a table (skips if not exists)

Implementation

Future<void> dropTable(String tableName) async {
  final sql = 'DROP TABLE IF EXISTS $tableName;';
  await connection.execute(sql);
}