diff options
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/entities/user-profile.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/entities/user-profile.ts b/src/models/entities/user-profile.ts index 61e80049c3..1244fa4390 100644 --- a/src/models/entities/user-profile.ts +++ b/src/models/entities/user-profile.ts @@ -99,6 +99,12 @@ export class UserProfile { }) public clientData: Record<string, any>; + @Column('jsonb', { + default: {}, + comment: 'The room data of the User.' + }) + public room: Record<string, any>; + @Column('boolean', { default: false, }) |