-- Add remote_work employment status (work from home — no late check-in rules).
-- Run once in Supabase SQL editor.

alter table public.users
  drop constraint if exists users_employment_status_check;

alter table public.users
  add constraint users_employment_status_check
  check (employment_status in ('part_time', 'full_time', 'remote_work'));
