Software /
code /
prosody
Comparison
tools/migration/config.lua @ 4162:af720a91aa19
tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 23 Feb 2011 02:16:19 +0500 |
child | 4166:3ac90743039b |
comparison
equal
deleted
inserted
replaced
4161:c299726d2b4e | 4162:af720a91aa19 |
---|---|
1 input { | |
2 type = "prosody_sql"; | |
3 driver = "SQLite3"; | |
4 database = "out.sqlite"; | |
5 } | |
6 output { | |
7 type = "prosody_files"; | |
8 path = "out"; | |
9 } | |
10 | |
11 --[[ | |
12 | |
13 input { | |
14 path = "../../data"; | |
15 type = "prosody_files"; | |
16 driver = "SQLite3"; | |
17 database = "../../prosody.sqlite"; | |
18 } | |
19 output { | |
20 type = "prosody_sql"; | |
21 driver = "SQLite3"; | |
22 database = "out.sqlite"; | |
23 path = "out"; | |
24 } | |
25 | |
26 ]] |