Compare commits

..

2 Commits

Author SHA1 Message Date
shibao 0ea953a34c fix tests
continuous-integration/drone/push Build is passing Details
2023-02-05 00:48:47 -05:00
shibao 1284a0c4b1 improve oban logging 2023-02-05 00:48:47 -05:00
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ defmodule Memex.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(:memex, "priv/repo/migrations")
Ecto.Migrator.run(Memex.Repo, path, :up, all: true)
end
defp automigrate_enabled? do
Application.get_env(:lokal, Lokal.Application, automigrate: false)[:automigrate]
Application.get_env(:memex, Memex.Application, automigrate: false)[:automigrate]
end
end