mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
6d7b38f4de
* Implement endpoints for user data import/export * add test * exclude avatar/banner * increase import url count, add rate limit * also export/import saved posts * rate limit * rename * saved posts also exist * rename routes * fix test * error handling * clippy * limit parallelism * clippy --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
7 lines
205 B
SQL
7 lines
205 B
SQL
ALTER TABLE local_site_rate_limit
|
|
ADD COLUMN import_user_settings int NOT NULL DEFAULT 1;
|
|
|
|
ALTER TABLE local_site_rate_limit
|
|
ADD COLUMN import_user_settings_per_second int NOT NULL DEFAULT 86400;
|
|
|