diff options
author | Kim Alvefur <zash@zash.se> | 2023-11-01 19:02:02 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-11-01 19:02:02 +0100 |
commit | 607bfafe36c62f7fe58d145d554b71e9217e9db5 (patch) | |
tree | b4ec3c89b98d08678d9a525390329a60e0ba4984 | |
parent | 2c9c0fab32be47b60c9fd79c3b26d7861f28cfc0 (diff) | |
download | prosody-607bfafe36c62f7fe58d145d554b71e9217e9db5.tar.gz prosody-607bfafe36c62f7fe58d145d554b71e9217e9db5.zip |
migrator: Update default config template with new stores
* mod_authz_internal adds account_roles
* mod_cron has its state
* mod_smacks also has some non-critical state
-rw-r--r-- | tools/migration/migrator.cfg.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/migration/migrator.cfg.lua b/tools/migration/migrator.cfg.lua index b81389b3..4291810f 100644 --- a/tools/migration/migrator.cfg.lua +++ b/tools/migration/migrator.cfg.lua @@ -3,6 +3,7 @@ local data_path = "../../data"; local vhost = { "accounts", "account_details", + "account_roles", "roster", "vcard", "private", @@ -12,12 +13,15 @@ local vhost = { "offline-archive", "pubsub_nodes-pubsub", "pep-pubsub", + "cron", + "smacks_h", } local muc = { "persistent", "config", "state", "muc_log-archive", + "cron", }; input { |