# `mix ash_postgres.drop`
[🔗](https://github.com/ash-project/ash_postgres/blob/v2.8.0/lib/mix/tasks/ash_postgres.drop.ex#L5)

Drop the storage for the given repository.

## Examples

    mix ash_postgres.drop
    mix ash_postgres.drop --domains MyApp.Domain1,MyApp.Domain2

## Command line options

  * `--domains` - the domains who's repos should be dropped
  * `-r, --repo` - the repo to drop
  * `-q`, `--quiet` - run the command quietly
  * `-f`, `--force` - do not ask for confirmation when dropping the database.
    Configuration is asked only when `:start_permanent` is set to true
    (typically in production)
  * `--force-drop` - force the database to be dropped even
    if it has connections to it (requires PostgreSQL 13+)
  * `--no-compile` - do not compile before dropping
  * `--no-deps-check` - do not check dependencies before dropping

---

*Consult [api-reference.md](api-reference.md) for complete listing*
