-- Widen notifications.employeesso / employeename to TEXT. -- -- Recognition and recertification notifications comma-join every listed -- employee's SSO and name into one column. VARCHAR(100) truncated the list at -- ~11 people, dropping names off the shopfloor grid. TEXT removes the cap. -- Idempotent - re-running MODIFY to the same type is a no-op. ALTER TABLE notifications MODIFY employeesso TEXT, MODIFY employeename TEXT;