10 lines
175 B
Elixir
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
|