diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2020-12-22 05:11:19 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2020-12-28 11:05:25 +0100 |
commit | d0c2479710b40a88b3a74c85c9ed9e72e9a2bfaf (patch) | |
tree | 6b71ac6441df6071009f39bc613cec109204d6b0 /docs | |
parent | 18b536c176d3b51f3a91f42ba5a001711ab85490 (diff) | |
download | pleroma-d0c2479710b40a88b3a74c85c9ed9e72e9a2bfaf.tar.gz pleroma-d0c2479710b40a88b3a74c85c9ed9e72e9a2bfaf.zip |
pleroma.database fill_old_hashtags: Add month_limit argument
Diffstat (limited to 'docs')
-rw-r--r-- | docs/administration/CLI_tasks/database.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/administration/CLI_tasks/database.md b/docs/administration/CLI_tasks/database.md index a2d2e8cdd..eb85381ff 100644 --- a/docs/administration/CLI_tasks/database.md +++ b/docs/administration/CLI_tasks/database.md @@ -93,12 +93,14 @@ Can be safely re-run ## Fill hashtags for old objects +Migrate hashags fields for old objects, from now to `months_limit` months. + ```sh tab="OTP" -./bin/pleroma_ctl database fill_old_hashtags +./bin/pleroma_ctl database fill_old_hashtags <months_limit> ``` ```sh tab="From Source" -mix pleroma.database fill_old_hashtags +mix pleroma.database fill_old_hashtags <months_limit> ``` ## Vacuum the database |