mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/migration/config.lua: Minor fixes for more sensible defaults
This commit is contained in:
parent
1370dd825c
commit
a33886bcb1
1 changed files with 10 additions and 10 deletions
|
@ -1,26 +1,26 @@
|
|||
local data_path = "../../data";
|
||||
|
||||
input {
|
||||
type = "prosody_files";
|
||||
path = data_path;
|
||||
}
|
||||
|
||||
output {
|
||||
type = "prosody_sql";
|
||||
driver = "SQLite3";
|
||||
database = "out.sqlite";
|
||||
}
|
||||
output {
|
||||
type = "prosody_files";
|
||||
path = "out";
|
||||
database = data_path.."/prosody.sqlite";
|
||||
}
|
||||
|
||||
--[[
|
||||
|
||||
input {
|
||||
path = "../../data";
|
||||
type = "prosody_files";
|
||||
driver = "SQLite3";
|
||||
database = "../../prosody.sqlite";
|
||||
path = data_path;
|
||||
}
|
||||
output {
|
||||
type = "prosody_sql";
|
||||
driver = "SQLite3";
|
||||
database = "out.sqlite";
|
||||
path = "out";
|
||||
database = data_path.."/prosody.sqlite";
|
||||
}
|
||||
|
||||
]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue