aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-02-25 01:29:31 +0000
committerMatthew Wild <mwild1@gmail.com>2011-02-25 01:29:31 +0000
commitf17b62707f5007b0e040261defd11d4c21dd309e (patch)
tree6508ff48c4a7c50d2da7b56b7f0e91a191e3c10e
parentca57cb27dce917a53da05bd2bacd4f8c696a2c58 (diff)
downloadprosody-f17b62707f5007b0e040261defd11d4c21dd309e.tar.gz
prosody-f17b62707f5007b0e040261defd11d4c21dd309e.zip
tools/migration/config.lua: Minor fixes for more sensible defaults
-rw-r--r--tools/migration/config.lua20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/migration/config.lua b/tools/migration/config.lua
index 3f2057f0..fa37f2a3 100644
--- a/tools/migration/config.lua
+++ b/tools/migration/config.lua
@@ -1,26 +1,26 @@
+local data_path = "../../data";
+
input {
- type = "prosody_sql";
- driver = "SQLite3";
- database = "out.sqlite";
+ type = "prosody_files";
+ path = data_path;
}
+
output {
- type = "prosody_files";
- path = "out";
+ type = "prosody_sql";
+ driver = "SQLite3";
+ database = data_path.."/prosody.sqlite";
}
--[[
input {
- path = "../../data";
type = "prosody_files";
- driver = "SQLite3";
- database = "../../prosody.sqlite";
+ path = data_path;
}
output {
type = "prosody_sql";
driver = "SQLite3";
- database = "out.sqlite";
- path = "out";
+ database = data_path.."/prosody.sqlite";
}
]]