mirror of https://github.com/LemmyNet/lemmy.git
8 lines
263 B
MySQL
8 lines
263 B
MySQL
|
-- Delete the empty public keys
|
||
|
delete from community where public_key is null;
|
||
|
delete from person where public_key is null;
|
||
|
|
||
|
-- Make it required
|
||
|
alter table community alter column public_key set not null;
|
||
|
alter table person alter column public_key set not null;
|