mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-12 10:45:54 +00:00
11 lines
245 B
Elixir
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
|