8 lines
216 B
SQL
8 lines
216 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 set default true;
|
|
|