drop method

void drop(
  1. String table, {
  2. bool ifExists = false,
  3. bool cascade = false,
})

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,
    ),
  );
}