Compare commits

..

2 Commits

Author SHA1 Message Date
a055491f6b fix tests 2023-02-04 21:51:49 -05:00
29d13b5b1f improve oban logging 2023-02-04 20:48:14 -05:00

@ -15,11 +15,11 @@ defmodule Cannery.Repo.Migrator do
end
def migrate! do
path = Application.app_dir(:cannery, "priv/repo/migrations")
Ecto.Migrator.run(Cannery.Repo, path, :up, all: true)
path = Application.app_dir(:lokal, "priv/repo/migrations")
Ecto.Migrator.run(Lokal.Repo, path, :up, all: true)
end
defp automigrate_enabled? do
Application.get_env(:cannery, Cannery.Application, automigrate: false)[:automigrate]
Application.get_env(:lokal, Lokal.Application, automigrate: false)[:automigrate]
end
end