ash_sqlite/lib/mix/tasks/ash_sqlite.drop.ex
Zach Daniel 0cc6401a47 chore: update Mix.Helpers naming
improvement: support `mix ash.rollback`
2024-04-09 20:22:05 -04:00

58 lines
1.5 KiB
Elixir

defmodule Mix.Tasks.AshSqlite.Drop do
use Mix.Task
@shortdoc "Drops the repository storage for the repos in the specified (or configured) domains"
@default_opts [force: false, force_drop: false]
@aliases [
f: :force,
q: :quiet
]
@switches [
force: :boolean,
force_drop: :boolean,
quiet: :boolean,
domains: :string,
no_compile: :boolean,
no_deps_check: :boolean
]
@moduledoc """
Drop the storage for the given repository.
## Examples
mix ash_sqlite.drop
mix ash_sqlite.drop -r MyApp.Domain1,MyApp.Domain2
## Command line options
* `--doains` - the domains who's repos should be dropped
* `-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)
* `--no-compile` - do not compile before dropping
* `--no-deps-check` - do not compile before dropping
"""
@doc false
def run(args) do
{opts, _} = OptionParser.parse!(args, strict: @switches, aliases: @aliases)
opts = Keyword.merge(@default_opts, opts)
repos = AshSqlite.Mix.Helpers.repos!(opts, args)
repo_args =
Enum.flat_map(repos, fn repo ->
["-r", to_string(repo)]
end)
rest_opts = AshSqlite.Mix.Helpers.delete_arg(args, "--domains")
Mix.Task.reenable("ecto.drop")
Mix.Task.run("ecto.drop", repo_args ++ rest_opts)
end
end