code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20171016125516_change_github_comment_relationships.exs

Summary

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

  def up do
    alter table(:comments) do
      remove :github_id
      add :github_comment_id, references(:github_comments)
    end
  end

  def down do
    alter table(:comments) do
      add :github_id, :integer
      remove :github_comment_id
    end
  end
end