diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-05 17:44:47 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-05 17:44:47 +0200 |
commit | ce996cdb1cdc4c5331332df525b9d181c8fc0c4e (patch) | |
tree | 9b822604cd6346fcf8942e0af609127bb69eba21 | |
parent | 50611461f2fd9ca769502ac6bcc1e0baaef0e789 (diff) | |
download | prosody-ce996cdb1cdc4c5331332df525b9d181c8fc0c4e.tar.gz prosody-ce996cdb1cdc4c5331332df525b9d181c8fc0c4e.zip |
mod_storage_sql: Also clear the prosodyarchive table when an user is deleted (fixes #1009)
-rw-r--r-- | plugins/mod_storage_sql.lua | 1 |
1 files changed, 1 insertions, 0 deletions
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 |