prosody/tools/migration/migrator.cfg.lua
Kim Alvefur 3854d0c090 migrator: Support pubsub and pep as a special-case
This sorta overloads the type suffix but PEP is used for enough stuff
to justify this hack
2022-01-09 18:52:58 +01:00

50 lines
662 B
Lua

local data_path = "../../data";
local vhost = {
"accounts",
"account_details",
"roster",
"vcard",
"private",
"blocklist",
"privacy",
"archive-archive",
"offline-archive",
"pubsub_nodes-pubsub",
"pep-pubsub",
}
local muc = {
"persistent",
"config",
"state",
"muc_log-archive",
};
input {
hosts = {
["example.com"] = vhost;
["conference.example.com"] = muc;
};
type = "internal";
path = data_path;
}
output {
type = "sql";
driver = "SQLite3";
database = data_path.."/prosody.sqlite";
}
--[[
input {
type = "internal";
path = data_path;
}
output {
type = "sql";
driver = "SQLite3";
database = data_path.."/prosody.sqlite";
}
]]