diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-13 08:17:58 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-13 08:17:58 +0100 |
commit | b509a1b16fce31139d0cabb5ee4cb1361d8700cb (patch) | |
tree | 45fee2c5437581f55fabc44f163cebd968e5f770 /plugins | |
parent | 9ae8e96685655f33b74e05d3fd4571bc063a8a06 (diff) | |
download | prosody-b509a1b16fce31139d0cabb5ee4cb1361d8700cb.tar.gz prosody-b509a1b16fce31139d0cabb5ee4cb1361d8700cb.zip |
mod_storage_sql: Fix issue number in comment that was fixed by 55b40f3fa659 (fixes #1073)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index 859b43c9..ae6a2676 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -522,7 +522,7 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore end do - -- Ensure index is not unique (issue #1087) + -- Ensure index is not unique (issue #1073) local result = assert(engine:execute([[SHOW INDEX FROM prosodyarchive WHERE key_name='prosodyarchive_index' and non_unique=0]])); if result:rowcount() > 0 then changes = true; |