Packages

Build calendars from ecto queries, includes view helpers for easy rendering with Phoenix

Current section

Files

Jump to
ez_calendar priv repo migrations 20161118055240_create_shifts.exs
Raw

priv/repo/migrations/20161118055240_create_shifts.exs

defmodule EZCalendar.Repo.Migrations.CreateShifts do
use Ecto.Migration
def change do
create table(:shifts) do
add :employee, :string
add :date, :date
add :datetime, :datetime
add :starting, :datetime
add :ending, :datetime
timestamps()
end
end
end