code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20161125200620_add_total_donated_to_project.exs

Summary

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

  def change do
    alter table(:projects) do
      add :total_monthly_donated, :integer, default: 0
    end
  end
end