25 lines
717 B
MySQL
25 lines
717 B
MySQL
|
|
-- ============================================
|
|||
|
|
-- 此文件由 Meoo Cloud 自动生成,请勿修改
|
|||
|
|
-- This file is auto-generated by Meoo Cloud, DO NOT MODIFY
|
|||
|
|
-- ============================================
|
|||
|
|
|
|||
|
|
|
|||
|
|
-- profiles 表 RLS 策略
|
|||
|
|
-- 用户可以查看自己公司的所有成员资料
|
|||
|
|
CREATE POLICY users_select_company_profiles ON public.profiles
|
|||
|
|
FOR SELECT USING (
|
|||
|
|
company_id = public.get_user_master_company_id()
|
|||
|
|
OR id = auth.uid()
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
-- 用户可以修改自己的资料
|
|||
|
|
CREATE POLICY users_update_own_profile ON public.profiles
|
|||
|
|
FOR UPDATE USING (
|
|||
|
|
id = auth.uid()
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
-- 允许创建 profile(注册时需要)
|
|||
|
|
CREATE POLICY users_insert_profile ON public.profiles
|
|||
|
|
FOR INSERT WITH CHECK (true);
|
|||
|
|
|