File

tools/migration/migrator.cfg.lua @ 4229:f15b4e9ba688

tools/migration: Rename main.lua -> prosody-migrator.lua and update the Makefile
author Matthew Wild <mwild1@gmail.com>
date Mon, 21 Mar 2011 19:39:04 +0000
parent 4214:1674cd17557c
child 10003:4d702f0c6273
line wrap: on
line source

local data_path = "../../data";

input {
	type = "prosody_files";
	path = data_path;
}

output {
	type = "prosody_sql";
	driver = "SQLite3";
	database = data_path.."/prosody.sqlite";
}

--[[

input {
	type = "prosody_files";
	path = data_path;
}
output {
	type = "prosody_sql";
	driver = "SQLite3";
	database = data_path.."/prosody.sqlite";
}

]]