code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20171123065902_remove_github_repo_and_owner_from_project.exs

Summary

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

  def change do
    alter table(:projects) do
      remove(:github_repo)
      remove(:github_owner)
    end
  end
end