frenzy/priv/repo/migrations/20191110165504_feeds_add_fa...

10 lines
175 B
Elixir

defmodule Frenzy.Repo.Migrations.FeedsAddFavicon do
use Ecto.Migration
def change do
alter table(:feeds) do
add :favicon, :text, default: nil
end
end
end