mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/migration/migrator/prosody_sql: Throw a friendlier error when LuaDBI is not found
This commit is contained in:
parent
dddc15e0d9
commit
cef7f598c0
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
|
||||
local assert = assert;
|
||||
local DBI = require "DBI";
|
||||
local have_DBI, DBI = pcall(require,"DBI");
|
||||
local print = print;
|
||||
local type = type;
|
||||
local next = next;
|
||||
|
@ -11,6 +11,10 @@ local mtools = require "migrator.mtools";
|
|||
local tostring = tostring;
|
||||
local tonumber = tonumber;
|
||||
|
||||
if not have_DBI then
|
||||
error("LuaDBI (required for SQL support) was not found, please see http://prosody.im/doc/depends#luadbi", 0);
|
||||
end
|
||||
|
||||
module "prosody_sql"
|
||||
|
||||
local function create_table(connection, params)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue