Files
berrypod/priv/repo/migrations/20260417142206_add_og_image_to_pages.exs
jamey 4aa7dece0c
All checks were successful
deploy / deploy (push) Successful in 4m59s
add SEO enhancements: OG images, meta robots, FAQ block, image sitemap
- Per-page SEO controls: meta robots directives, focus keyword, OG image
- Site-wide default OG image in admin settings
- FAQ block type with FAQPage JSON-LD schema
- Enhanced Organization JSON-LD with business info, contact, address
- Image sitemap with product images
- SEO preview panel with Google/social card mockups
- SEO checklist with real-time scoring
- Business info section in site editor
- GSC integration scaffolding (OAuth, client, cache)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-17 16:47:43 +01:00

10 lines
174 B
Elixir

defmodule Berrypod.Repo.Migrations.AddOgImageToPages do
use Ecto.Migration
def change do
alter table(:pages) do
add :og_image_id, :binary_id
end
end
end