make sure we don't zap our own files

This commit is contained in:
Ted Unangst 2019-05-25 14:44:40 -04:00
parent 233f80fa4a
commit e05c112af4
1 changed files with 1 additions and 1 deletions

View File

@ -1316,7 +1316,7 @@ func cleanupdb() {
}
}
expdate := time.Now().UTC().Add(-30 * 24 * time.Hour).Format(dbtimeformat)
doordie(db, "update files set content = '', local = 0 where length(content) > 20000 and fileid in (select fileid from donks join honks on donks.honkid = honks.honkid where honks.dt < ? and whofore = 0)", expdate)
doordie(db, "update files set content = '', local = 0 where length(content) > 20000 and fileid in (select fileid from donks join honks on donks.honkid = honks.honkid where honks.dt < ? and whofore = 0) and fileid not in (select fileid from donks join honks on donks.honkid = honks.honkid where whofore = 2)", expdate)
doordie(db, "delete from files where fileid not in (select fileid from donks)")
}