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 0ced33e..ca73c13 100644
--- a/db.js
+++ b/db.js
@@ -56,6 +56,12 @@ class DB {
await this.query(tables[3]);
}
+ async resetSecrets() {
+ const tables = await this.getTables();
+ await this.query("DROP TABLE IF EXISTS secrets");
+ await this.query(tables[17]);
+ }
+
async resetProfiles() {
const tables = await this.getTables();
await this.query("DROP TABLE IF EXISTS profile_comments");