aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/config.lua
blob: 199b8207fe37af1e53d7b6c06a1cfa27df4351c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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";
}

]]