You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
447 B
20 lines
447 B
defmodule DecentralisedBookIndex.Repo do
|
|
use AshPostgres.Repo,
|
|
otp_app: :decentralised_book_index
|
|
|
|
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
|
|
def prefer_transaction? do
|
|
false
|
|
end
|
|
|
|
def min_pg_version do
|
|
%Version{major: 16, minor: 0, patch: 0}
|
|
end
|
|
end
|