lemmy/migrations/2022-05-10-173801_change_pending_to_notnull/down.sql

6 lines
158 B
SQL

-- This file should undo anything in `up.sql`
alter table community_follower
alter column pending drop not null,
alter column pending set default false;