Packages

SaaS Library for Ecto applications using Postgres or Mysql

Current section

Files

Jump to
apartmentex lib adapters postgres.ex
Raw

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