Packages

SaaS Library for Ecto applications using Postgres or Mysql

Current section

Files

Jump to
apartmentex lib adapters mysql.ex
Raw

lib/adapters/mysql.ex

defmodule Apartmentex.Adapters.MySQL do
@moduledoc """
Adapter module for MySQL.
"""
# Inherit all behaviour from Ecto.Adapters.SQL
use Apartmentex.Adapters.SQL, :mariaex
@doc false
def supports_ddl_transaction? do
false
end
end