-- Add license expiration support to sys_users -- expires_at: timestamp when the user license expires; null = no expiration ALTER TABLE sys_users ADD COLUMN IF NOT EXISTS expires_at timestamptz; -- Existing users keep access (no expiration) by default.