8 lines
348 B
SQL
8 lines
348 B
SQL
-- 0030_user_update_channel_peers: allow account-level update events to reference channel peers.
|
|
|
|
ALTER TABLE user_update_events
|
|
DROP CONSTRAINT IF EXISTS user_update_events_peer_type_check;
|
|
|
|
ALTER TABLE user_update_events
|
|
ADD CONSTRAINT user_update_events_peer_type_check
|
|
CHECK (peer_type IS NULL OR peer_type IN ('user', 'channel'));
|