8 lines
351 B
MySQL
8 lines
351 B
MySQL
|
|
-- 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';
|