code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20171115225358_add_serialized_error_to_github_events.exs

Summary

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

  def change do
    alter table(:github_events) do
      add :data, :text
      add :error, :text
    end
  end
end