code-corps/code-corps-api

View on GitHub
priv/repo/migrations/20160822002438_add_icon_to_projects.exs

Summary

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

  def change do
    alter table(:projects) do
      add :icon, :string
    end
  end
end