Packages

Build Ecto models and tests from existing database (Postgresql)

Current section

Files

Jump to
migratrex lib models table_constraints.ex
Raw

lib/models/table_constraints.ex

defmodule Migratrex.TableConstraints do
use Migratrex.Model
@schema_prefix "information_schema"
schema "table_constraints" do
field :constraint_name
field :table_name
field :constraint_type
end
end