Created
June 11, 2017 01:39
-
-
Save abadongutierrez/0f43b0214bd7544514d436f5b34bfa9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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