dropTable method
Drop a table if it exists
Implementation
Future<void> dropTable(DatabaseSchema schema) async {
final sql = schema.toDropTableSql(connection.databaseType);
await connection.execute(sql);
}
Drop a table if it exists
Future<void> dropTable(DatabaseSchema schema) async {
final sql = schema.toDropTableSql(connection.databaseType);
await connection.execute(sql);
}