defmodule Frenzy.Repo.Migrations.FeedsAddFilter do use Ecto.Migration def change do alter table(:feeds) do add :filter_enabled, :boolean end end end