summaryrefslogtreecommitdiff
path: root/bin/cleanup (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed eslint errors (whitespaces)Erik Michelson2020-03-211-19/+23
| | | | Signed-off-by: Erik Michelson <erik@liltv.de>
* Clean up all foreign-key constraintsSheogorath2020-03-211-0/+20
| | | | | | | | | | | This patch cleans up the remaining possible foreign-key constraint. This case seem to appear, when notes are deleted, but due to missing database contraints not their authroships. This function should clean that up as well and complete the preparation for the new db contraints. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* Reduce requested arguments on cleanupSheogorath2020-03-211-6/+13
| | | | | | | | In order to prevent OOM situations due to large databases, this patch should reduce the amount of data requested from the database drastically. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
* fixup! Add fix for missing deletion of notes on user-deletion requestSheogorath2020-03-211-0/+17
|
* Add fix for missing deletion of notes on user-deletion requestSheogorath2020-03-211-0/+56
Depending on how the system was setup, this bug lead to keep user's data around even after a successful deletion of user'S account. This patch will make sure the missing database constraints are implemented and missed out deletions are executed. This bug was introduced to insufficent testing after implementing the feature initially. It was well tested, using the app process itself, but the migrations where missed out. I'm currently not sure, if there was also a change in how sequelize handles cassaded deletion, since I'm unter the impression that before switching to sequelize 5, this feature has worked. But I haven't verified this. No matter what, the cleanup process is rather straight forward and will be invoked on migration, but can also be done manually using the new `bin/cleanup` script. This change will result in a release 1.6.1. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>