Skip to content

Instantly share code, notes, and snippets.

@abadongutierrez
Last active June 9, 2017 03:31
Show Gist options
  • Save abadongutierrez/69dcf30979640dd2b35178b489c4e296 to your computer and use it in GitHub Desktop.
Save abadongutierrez/69dcf30979640dd2b35178b489c4e296 to your computer and use it in GitHub Desktop.
Ecto migration file to create a table department
defmodule Ecto101MigrationsSchemas.Repo.Migrations.DepartmentTable do
use Ecto.Migration
def change do
create table(:department) do
add :name, :text, null: false
timestamps()
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment