code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20170727052644_create_organization_invite.exs

Summary

Maintainability
Test Coverage
defmodule CodeCorps.Repo.Migrations.CreateOrganizationInvite do
  use Ecto.Migration

  def change do
    create table(:organization_invites) do
      add :code, :string, null: false
      add :email, :string, null: false
      add :title, :string, null: false
      add :fulfilled, :boolean, default: false, null: false

      timestamps()
    end
    create index(:organization_invites, [:code], unique: true)
    create index(:organization_invites, [:email])
  end
end