Packages

Build Ecto models and tests from existing database (Postgresql)

Current section

Files

Jump to
migratrex lib models pg_attribute.ex
Raw

lib/models/pg_attribute.ex

defmodule Migratrex.PgAttribute do
use Migratrex.Model
schema "pg_attribute" do
field :attrelid
field :attnum
field :attname
end
end