code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20170501225441_add_github_ids.exs

Summary

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

  def change do
    alter table(:comments) do
      add :github_id, :integer
    end

    alter table(:tasks) do
      add :github_id, :integer
    end

    alter table(:projects) do
      add :github_id, :integer
    end
  end
end