-- Track agent version per workstation ALTER TABLE workstations ADD COLUMN IF NOT EXISTS agent_version VARCHAR(20); -- Extend device types to include netup ALTER TABLE workstation_devices DROP CONSTRAINT IF EXISTS workstation_devices_type_check; ALTER TABLE workstation_devices ADD CONSTRAINT workstation_devices_type_check CHECK (type IN ('kkt', 'printer', 'netup'));