9 lines
309 B
SQL
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
|