aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/config.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2011-02-23 02:16:19 +0500
committerWaqas Hussain <waqas20@gmail.com>2011-02-23 02:16:19 +0500
commit0a2b87128fab3220d4d257692287df12fb040df2 (patch)
treef2ba11d202316444c92edd3d146ed29ea03bdd3f /tools/migration/config.lua
parentfc6149a695b65875580ff0a474af0748fc519d86 (diff)
downloadprosody-0a2b87128fab3220d4d257692287df12fb040df2.tar.gz
prosody-0a2b87128fab3220d4d257692287df12fb040df2.zip
tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
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";
+}
+
+]]