-- Migration 023: Add subscriptions lock feature to customers -- Allows locking subscription management for specific customers ALTER TABLE customers ADD COLUMN IF NOT EXISTS subscriptions_locked BOOLEAN DEFAULT FALSE; COMMENT ON COLUMN customers.subscriptions_locked IS 'When true, subscription management is locked (read-only) for this customer';