Packages

Build Ecto models and tests from existing database (Postgresql)

Current section

Files

Jump to
migratrex lib models key_column_usage.ex
Raw

lib/models/key_column_usage.ex

defmodule Migratrex.KeyColumnUsage do
use Migratrex.Model
@schema_prefix "information_schema"
schema "key_column_usage" do
field :constraint_name
field :column_name
end
end