Files
wanderer/lib/wanderer_app/repo.ex
Dmitry Popov 4136aaad76 Initial commit
2024-09-18 01:55:30 +04:00

11 lines
245 B
Elixir

defmodule WandererApp.Repo do
use AshPostgres.Repo,
otp_app: :wanderer_app
def installed_extensions do
# Ash installs some functions that it needs to run the
# first time you generate migrations.
["ash-functions"]
end
end