import { InlineLink } from '@/components/ui/InlineLink'
const PG_DELTA_REPO_URL = 'https://github.com/supabase/pg-toolbelt'
export const PgDeltaDiffPreview = () => {
return (
Use the pg-delta project to generate
schema diffs instead of migra when creating migrations from branch comparisons. pg-delta is
in alpha and is designed to better handle RLS (Row Level Security) and other schema
constructs.
Please note:
- pg-delta is in alpha; behavior may change.
-
Generated migrations may contain errors. Review each migration carefully before
executing it.
Enabling this preview will:
- Use pg-delta to compute schema diffs when comparing branches, instead of migra
)
}