Skip to content

Instantly share code, notes, and snippets.

@abadongutierrez
Created June 11, 2017 01:39
Show Gist options
  • Save abadongutierrez/0f43b0214bd7544514d436f5b34bfa9e to your computer and use it in GitHub Desktop.
Save abadongutierrez/0f43b0214bd7544514d436f5b34bfa9e to your computer and use it in GitHub Desktop.
defmodule Ecto101MigrationsSchemas.Employee do
use Ecto.Schema
schema "employee" do
field :first_name, :string
field :last_name, :string
field :hire_date, :date
belongs_to :department, Ecto101MigrationsSchemas.Department
timestamps()
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment