aboutsummaryrefslogtreecommitdiff
path: root/db.js
diff options
context:
space:
mode:
Diffstat (limited to 'db.js')
-rw-r--r--db.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/db.js b/db.js
index cf0d251..2735257 100644
--- a/db.js
+++ b/db.js
@@ -205,6 +205,12 @@ class DB {
await this.initQuestions();
}
+ async resetCharacteristics() {
+ const tables = await this.getTables();
+ await this.query("DROP TABLE IF EXISTS profile_char");
+ await this.query(tables[15]);
+ }
+
async regenerateUser(uid) {
const pwd = nanoid.nanoid(8);
const password = await bcrypt.hash(pwd, 10);