mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-06 09:04:48 +00:00
5240576de8
* Change 'Scaled' sort to use total interactions instead of monthly users * Misc SQL fixes * Fix formatting of error message * Run rustfmt
4 lines
132 B
SQL
4 lines
132 B
SQL
-- Add the interactions_month column
|
|
ALTER TABLE community_aggregates
|
|
ADD COLUMN interactions_month bigint NOT NULL DEFAULT 0;
|
|
|