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

9 lines
212 B
MySQL
Raw Normal View History

-- 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,
2022-05-17 18:02:48 +00:00
alter column pending drop default;