code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20160911233738_remove_icon_urls_from_projects.exs

Summary

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

  def change do
    alter table(:projects) do
      remove :icon_large_url
      remove :icon_thumb_url
    end
  end
end