1 files changed, 0 insertions, 3 deletions
diff --git a/src/util/entities/User.ts b/src/util/entities/User.ts
index 1237b676..77d4c37f 100644
--- a/src/util/entities/User.ts
+++ b/src/util/entities/User.ts
@@ -178,9 +178,6 @@ export class User extends BaseClass {
@Column({ type: "simple-json", select: false })
extended_settings: string = "{}";
- @Column({ type: "simple-json" })
- notes: { [key: string]: string } = {}; //key is ID of user
-
async save(): Promise<any> {
if (!this.settings) this.settings = new UserSettings();
this.settings.id = this.id;
|