SchemaMutation.dropTable constructor

SchemaMutation.dropTable({
  1. required String table,
  2. bool ifExists = false,
  3. bool cascade = false,
})

Implementation

factory SchemaMutation.dropTable({
  required String table,
  bool ifExists = false,
  bool cascade = false,
}) => SchemaMutation._(
  operation: SchemaMutationOperation.dropTable,
  dropOptions: DropTableOptions(
    table: table,
    ifExists: ifExists,
    cascade: cascade,
  ),
);