Created
June 11, 2017 01:39
-
-
Save abadongutierrez/063e7afca2fc5d8f6c96c0835495d949 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.Department do | |
use Ecto.Schema | |
schema "department" do | |
field :name, :string | |
has_many :employees, Ecto101MigrationsSchemas.Employee | |
timestamps() | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment