import { useParams } from 'common' import Image from 'next/image' import { Alert, AlertDescription, AlertTitle, WarningIcon } from 'ui' import { Markdown } from '@/components/interfaces/Markdown' import { InlineLink } from '@/components/ui/InlineLink' import { useCustomContent } from '@/hooks/custom-content/useCustomContent' import { BASE_PATH, DOCS_URL } from '@/lib/constants' export const CLSPreview = () => { const { ref } = useParams() const { docsRowLevelSecurityGuidePath } = useCustomContent(['docs:row_level_security_guide_path']) return (
Changes to column privileges will not be reflected in migrations when running{' '} briven db diff. Column privileges are not supported in the current version of the Briven CLI.
You will need to manually apply these changes to your database.
api-docs-side-panel-preview

Enabling this preview will:

) }