Compare commits

..

2 Commits

Author SHA1 Message Date
shibao 42e2d1c76e fix tests
continuous-integration/drone/push Build is passing Details
2023-02-05 00:51:51 -05:00
shibao 064d2d3988 improve oban logging 2023-02-05 00:51:51 -05:00
1 changed files with 3 additions and 3 deletions

View File

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