code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20171109231538_add_github_id_was.exs

Summary

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

  def change do
    alter table(:users) do
      add :github_id_was, :integer
    end
  end
end