-- Step 35: Add accountType column to waiters table
-- Supports distinguishing regular waiter accounts from VIP (owner/CEO) accounts
-- VIP accounts are hidden from the Manager app

ALTER TABLE `waiters`
  ADD COLUMN `accountType` enum('regular','vip') NOT NULL DEFAULT 'regular' AFTER `hasManagerPrivileges`;
