Software /
code /
prosody
Comparison
plugins/mod_storage_sql.lua @ 9459:6c279302fff4
mod_storage_sql: Remove unused function argument [luacheck]
What was the intent of this argument anyways?
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 10 Oct 2018 21:23:35 +0200 |
parent | 8537:d7f31badd359 |
child | 9479:3a683b2476e2 |
comparison
equal
deleted
inserted
replaced
9458:640c4f1b69a1 | 9459:6c279302fff4 |
---|---|
460 end | 460 end |
461 | 461 |
462 --- Initialization | 462 --- Initialization |
463 | 463 |
464 | 464 |
465 local function create_table(engine, name) -- luacheck: ignore 431/engine | 465 local function create_table(engine) -- luacheck: ignore 431/engine |
466 local Table, Column, Index = sql.Table, sql.Column, sql.Index; | 466 local Table, Column, Index = sql.Table, sql.Column, sql.Index; |
467 | 467 |
468 local ProsodyTable = Table { | 468 local ProsodyTable = Table { |
469 name = "prosody"; | 469 name = "prosody"; |
470 Column { name="host", type="TEXT", nullable=false }; | 470 Column { name="host", type="TEXT", nullable=false }; |