mirror of https://github.com/LemmyNet/lemmy.git
8 lines
246 B
MySQL
8 lines
246 B
MySQL
|
drop view person_alias_1, person_alias_2;
|
||
|
|
||
|
alter table person drop column ban_expires;
|
||
|
alter table community_person_ban drop column expires;
|
||
|
|
||
|
create view person_alias_1 as select * from person;
|
||
|
create view person_alias_2 as select * from person;
|