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 af18a47..0ced33e 100644
--- a/db.js
+++ b/db.js
@@ -214,6 +214,12 @@ class DB {
await this.query(tables[15]);
}
+ async resetTeacherPredict() {
+ const tables = await this.getTables();
+ await this.query("DROP TABLE IF EXISTS teacher_prediction");
+ await this.query(tables[16]);
+ }
+
async regenerateUser(uid) {
const pwd = nanoid.nanoid(8);
const password = await bcrypt.hash(pwd, 10);