Make accessTokens nullable in storage

This commit is contained in:
Henrik Hüttemann 2023-06-12 14:54:24 +02:00
parent 4692c7edea
commit 91fa37f82d
No known key found for this signature in database
GPG Key ID: 9F7BD10E0A8A111E

View File

@ -11,6 +11,6 @@ export class IdMapping {
@Column('integer') @Column('integer')
type!: number // Type of the entity; 0 = user, 1 = room, 2 = message type!: number // Type of the entity; 0 = user, 1 = room, 2 = message
@Column() @Column({ nullable: true })
accessToken?: string // Access token for matrix users accessToken?: string // Access token for matrix users
} }