Revert "Make new Event columns nullable"

This reverts commit abf6b855b9.
This commit is contained in:
Prathamesh Musale 2024-10-14 14:59:37 +05:30
parent 74f6b4b6ac
commit 622283b1f3

View File

@ -27,7 +27,7 @@ export class Event {
@Column('varchar', { length: 256 })
eventName!: string;
@Column('varchar', { length: 66, nullable: true })
@Column('varchar', { length: 66 })
topic0!: string;
@Column('varchar', { length: 66, nullable: true })
@ -39,7 +39,7 @@ export class Event {
@Column('varchar', { length: 66, nullable: true })
topic3!: string | null;
@Column('varchar', { nullable: true })
@Column('varchar')
data!: string;
@Column('text')