mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.sql: Create table with same charset as the charset we selected for our connection, also use corresponding _bin collation
This commit is contained in:
parent
137f763966
commit
7a4ec3c57c
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ function engine:_create_table(table)
|
|||
if self.params.driver == "PostgreSQL" then
|
||||
sql = sql:gsub("`", "\"");
|
||||
elseif self.params.driver == "MySQL" then
|
||||
sql = sql:gsub(";$", " CHARACTER SET 'utf8' COLLATE 'utf8_bin';");
|
||||
sql = sql:gsub(";$", (" CHARACTER SET '%s' COLLATE '%s_bin';"):format(self.charset, self.charset));
|
||||
end
|
||||
local success,err = self:execute(sql);
|
||||
if not success then return success,err; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue