Make accessTokens nullable in storage
This commit is contained in:
parent
4692c7edea
commit
91fa37f82d
@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user