▸ View SQL — Run once in Supabase SQL Editorcreate table public.ppm_schedules (
id uuid default gen_random_uuid() primary key,
submitted_at timestamptz default now(),
client text, site_address text, inspector text,
inspection_date text, work_order text
);
alter table public.ppm_schedules enable row level security;
create policy "insert" on public.ppm_schedules for insert with check (true);
create policy "select" on public.ppm_schedules for select using (true);
NZ Facilities Ltd
PPM Schedule Builder
NZ Facilities Ltd
Build Your PPM Report
Planned preventative maintenance — any client, any property
Client & Property
🏢
Tap to upload client logo
Inspector Details
Maintenance Areas
Save & Share
All Clients
PPM Schedule
if('serviceWorker' in navigator){
window.addEventListener('load',()=>{
navigator.serviceWorker.register('sw.js').catch(()=>{});
});
}