File

tools/migration/config.lua @ 4193:3fecfe58d633

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
line wrap: on
line source

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";
}

]]