defmodule Frenzy.Repo.Migrations.FeedsAddScrapeRemoteContent do use Ecto.Migration def change do alter table(:feeds) do add :scrape_remote_content, :boolean, default: true end end end