summaryrefslogtreecommitdiffstats
path: root/server/migrations/2020-03-26-192410_add_activitypub_tables/down.sql
blob: b1710623e45ed18740706d81e70e23dac0d97a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
drop table activity;

alter table user_ 
drop column actor_id, 
drop column private_key,
drop column public_key,
drop column bio,
drop column local,
drop column last_refreshed_at;

alter table community 
drop column actor_id, 
drop column private_key,
drop column public_key,
drop column local,
drop column last_refreshed_at;