]> Untitled Git - lemmy.git/blob - migrations/2021-11-23-132840_email_verification/down.sql
Split activity table into sent and received parts (fixes #3103) (#3583)
[lemmy.git] / migrations / 2021-11-23-132840_email_verification / down.sql
1 -- revert defaults from db for local user init
2 alter table local_user alter column theme set default 'darkly';
3 alter table local_user alter column default_listing_type set default 1;
4
5 -- remove tables and columns for optional email verification
6 alter table site drop column require_email_verification;
7 alter table local_user drop column email_verified;
8 drop table email_verification;