Regenerate watcher to backfill event data #20

Merged
nabarun merged 8 commits from pm-upgrade-watcher into main 2024-10-14 12:54:35 +00:00
Showing only changes of commit 622283b1f3 - Show all commits

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')