diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-02-23 02:16:19 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-02-23 02:16:19 +0500 |
commit | 3b2591c47d5dc035f421dc3150c1cf1f3bd7f308 (patch) | |
tree | 3a6b0fc2e76f53445c84ecae740bf1b727d5163b /tools/migration/config.lua | |
parent | 51debb35354d6d01c2a4674946b1d477abea2d09 (diff) | |
download | prosody-3b2591c47d5dc035f421dc3150c1cf1f3bd7f308.tar.gz prosody-3b2591c47d5dc035f421dc3150c1cf1f3bd7f308.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.lua | 26 |
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";
+}
+
+]]
|