Add release-specific ecto logic

See https://hexdocs.pm/phoenix/releases.html for details
This commit is contained in:
Timothée Floure 2021-01-13 17:02:13 +01:00
parent 1a9fe301d0
commit d71a1f1261
Signed by: tfloure
GPG Key ID: 4502C902C00A1E12
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
defmodule RecycledCloud.Release do
@app :recycledcloud
def migrate do
load_app()
for repo <- repos() do
{:ok, _, _} = Ecto.Migrator.with_repo(repo, &Ecto.Migrator.run(&1, :up, all: true))
end
end
def rollback(repo, version) do
load_app()
{:ok, _, _} = Ecto.Migrator.with_repo(repo, &Ecto.Migrator.run(&1, :down, to: version))
end
defp repos do
Application.fetch_env!(@app, :ecto_repos)
end
defp load_app do
Application.load(@app)
end
end