mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-27 02:25:40 +00:00
22 lines
467 B
Elixir
22 lines
467 B
Elixir
defmodule SpazioSolazzo.Repo do
|
|
use AshPostgres.Repo,
|
|
otp_app: :spazio_solazzo
|
|
|
|
@impl true
|
|
def installed_extensions do
|
|
# Add extensions here, and the migration generator will install them.
|
|
["ash-functions", "citext"]
|
|
end
|
|
|
|
# Don't open unnecessary transactions
|
|
# will default to `false` in 4.0
|
|
@impl true
|
|
def prefer_transaction? do
|
|
false
|
|
end
|
|
|
|
@impl true
|
|
def min_pg_version do
|
|
%Version{major: 16, minor: 0, patch: 0}
|
|
end
|
|
end
|