shift73k/priv/repo/migrations/20210311220933_create_shifts.exs

22 lines
631 B
Elixir

defmodule Shift73k.Repo.Migrations.CreateShifts do
use Ecto.Migration
def change do
create table(:shifts, primary_key: false) do
add :id, :binary_id, primary_key: true
add :subject, :string, size: 280, null: false
add :location, :string, size: 280
add :description, :text
add :date, :date, null: false
add :time_zone, :string, null: false
add :time_start, :time, null: false
add :time_end, :time, null: false
add :user_id, references(:users, on_delete: :nothing, type: :binary_id)
timestamps()
end
create index(:shifts, [:user_id, :subject])
end
end