10 lines
184 B
Elixir
10 lines
184 B
Elixir
defmodule Frenzy.Repo.Migrations.FeedsAddFaviconUrl do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:feeds) do
|
|
add :favicon_url, :string, default: nil
|
|
end
|
|
end
|
|
end
|