BSE & ASE — Executive Principal

Shared Staff Registry

Central management of staff who teach across multiple PTC booking forms

One-time Setup

Connect to the same Supabase project as your BSE booking forms.
First run this SQL in Supabase to create the shared staff table:

create table if not exists ptc_shared_teachers (
  id uuid default gen_random_uuid() primary key,
  name text not null,
  notes text,
  forms text[] not null default '{}',
  created_at timestamptz default now()
);
grant all on ptc_shared_teachers to anon, authenticated;

Stored only in this browser's localStorage.