code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20170526095401_add_github_auth_token_to_users.exs

Summary

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

  def change do
    alter table(:users) do
      add :github_auth_token, :string
    end
  end
end