Files
root-org/supabase/migrations/030_platform_admin.sql
2026-02-07 21:47:47 +02:00

9 lines
309 B
SQL

-- Platform admin flag on profiles
-- Only platform admins can access the /admin dashboard
ALTER TABLE profiles
ADD COLUMN is_platform_admin BOOLEAN NOT NULL DEFAULT false;
-- Set the initial platform admin (update this UUID to match your user)
-- This will be set via the admin API or manually in the DB