Current section
Files
Jump to
Current section
Files
lib/adapters/postgres.ex
defmodule Apartmentex.Adapters.Postgres do
@moduledoc """
Adapter module for PostgreSQL.
"""
# Inherit all behaviour from Ecto.Adapters.SQL
use Apartmentex.Adapters.SQL, :postgrex
@doc false
def supports_ddl_transaction? do
true
end
end