aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tools/migration/config.lua')
-rw-r--r--tools/migration/config.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/migration/config.lua b/tools/migration/config.lua
new file mode 100644
index 00000000..199b8207
--- /dev/null
+++ b/tools/migration/config.lua
@@ -0,0 +1,26 @@
+input {
+ type = "prosody_sql";
+ driver = "SQLite3";
+ database = "out.sqlite";
+}
+output {
+ type = "prosody_files";
+ path = "out";
+}
+
+--[[
+
+input {
+ path = "../../data";
+ type = "prosody_files";
+ driver = "SQLite3";
+ database = "../../prosody.sqlite";
+}
+output {
+ type = "prosody_sql";
+ driver = "SQLite3";
+ database = "out.sqlite";
+ path = "out";
+}
+
+]]