Skip to content

Instantly share code, notes, and snippets.

@abadongutierrez
Created June 11, 2017 01:39
Show Gist options
  • Save abadongutierrez/063e7afca2fc5d8f6c96c0835495d949 to your computer and use it in GitHub Desktop.
Save abadongutierrez/063e7afca2fc5d8f6c96c0835495d949 to your computer and use it in GitHub Desktop.
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