lemmy/migrations/2022-05-10-173801_change_pending_to_notnull/up.sql
2022-05-20 16:15:14 +00:00

9 lines
212 B
SQL

-- Make the pending column not null
update community_follower set pending = true where pending is null;
alter table community_follower
alter column pending set not null,
alter column pending drop default;