]> Untitled Git - lemmy.git/blob - migrations/2021-01-27-202728_active_users_monthly/down.sql
add enable_federated_downvotes site option
[lemmy.git] / migrations / 2021-01-27-202728_active_users_monthly / down.sql
1 ALTER TABLE site_aggregates
2     DROP COLUMN users_active_day,
3     DROP COLUMN users_active_week,
4     DROP COLUMN users_active_month,
5     DROP COLUMN users_active_half_year;
6
7 ALTER TABLE community_aggregates
8     DROP COLUMN users_active_day,
9     DROP COLUMN users_active_week,
10     DROP COLUMN users_active_month,
11     DROP COLUMN users_active_half_year;
12
13 DROP FUNCTION site_aggregates_activity (i text);
14
15 DROP FUNCTION community_aggregates_activity (i text);
16