
alter table public.projects enable row level security; drop policy if exists estimator_authenticated_read on public.projects; drop policy if exists estimator_authenticated_insert on public.projects; drop policy if exists estimator_authenticated_update on public.projects; drop policy if exists estimator_authenticated_delete on public.projects; create policy estimator_authenticated_read on public.projects for select to authenticated using (true); create policy estimator_authenticated_insert on public.projects for insert to authenticated with check (true); create policy estimator_authenticated_update on public.projects for update to authenticated using (true) with check (true); create policy estimator_authenticated_delete on public.projects for delete to authenticated using (true);