From ce996cdb1cdc4c5331332df525b9d181c8fc0c4e Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 5 Oct 2017 17:44:47 +0200 Subject: mod_storage_sql: Also clear the prosodyarchive table when an user is deleted (fixes #1009) --- plugins/mod_storage_sql.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins') diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index edbfd5e4..c729c66a 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -416,6 +416,7 @@ end function driver:purge(username) return engine:transaction(function() engine:delete("DELETE FROM \"prosody\" WHERE \"host\"=? AND \"user\"=?", host, username); + engine:delete("DELETE FROM \"prosodyarchive\" WHERE \"host\"=? AND \"user\"=?", host, username); end); end -- cgit v1.2.3