diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2020-12-28 10:14:58 +0000 |
---|---|---|
committer | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2020-12-28 10:14:58 +0000 |
commit | b122b6ffa318af30586f9da0532135959804a6a0 (patch) | |
tree | ec01ebec0ec8877af9e4876c3627e0756677e081 /docs/administration | |
parent | e4f1d8f48c85b8a388d6c3945db157de5ce588c5 (diff) | |
parent | d0c2479710b40a88b3a74c85c9ed9e72e9a2bfaf (diff) | |
download | pleroma-b122b6ffa318af30586f9da0532135959804a6a0.tar.gz pleroma-b122b6ffa318af30586f9da0532135959804a6a0.zip |
Merge branch 'features/hashtag-column' into 'develop'
Insert text representation of hashtags into object["hashtags"]
See merge request pleroma/pleroma!2824
Diffstat (limited to 'docs/administration')
-rw-r--r-- | docs/administration/CLI_tasks/database.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/database.md b/docs/administration/CLI_tasks/database.md index 6dca83167..eb85381ff 100644 --- a/docs/administration/CLI_tasks/database.md +++ b/docs/administration/CLI_tasks/database.md @@ -91,6 +91,18 @@ Can be safely re-run mix pleroma.database fix_likes_collections ``` +## 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 <months_limit> +``` + +```sh tab="From Source" +mix pleroma.database fill_old_hashtags <months_limit> +``` + ## Vacuum the database ### Analyze |