drop method
Registers a drop table command.
Implementation
void drop(String table, {bool ifExists = false, bool cascade = false}) {
_mutations.add(
SchemaMutation.dropTable(
table: _applyTablePrefix(table),
ifExists: ifExists,
cascade: cascade,
),
);
}