code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20170115035159_add_object_id_type_to_events.exs

Summary

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

  def change do
    alter table(:stripe_events) do
      add :object_id, :string, null: false
      add :object_type, :string, null: false
    end
  end
end