owpengram-server/deploy/migrations/0035_channel_join_settings.up.sql
2026-06-04 01:37:39 +08:00

5 lines
232 B
SQL

-- 0035_channel_join_settings: public join/send gating flags.
ALTER TABLE channels
ADD COLUMN IF NOT EXISTS join_to_send BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN IF NOT EXISTS join_request BOOLEAN NOT NULL DEFAULT false;