Annotate

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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4162
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
1 input {
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
2 type = "prosody_sql";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
3 driver = "SQLite3";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
4 database = "out.sqlite";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
5 }
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
6 output {
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
7 type = "prosody_files";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
8 path = "out";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
9 }
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
10
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
11 --[[
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
12
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
13 input {
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
14 path = "../../data";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
15 type = "prosody_files";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
16 driver = "SQLite3";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
17 database = "../../prosody.sqlite";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
18 }
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
19 output {
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
20 type = "prosody_sql";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
21 driver = "SQLite3";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
22 database = "out.sqlite";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
23 path = "out";
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
24 }
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
25
af720a91aa19 tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
26 ]]