Make new Event columns nullable
This commit is contained in:
parent
a0673f804e
commit
abf6b855b9
@ -27,7 +27,7 @@ export class Event {
|
|||||||
@Column('varchar', { length: 256 })
|
@Column('varchar', { length: 256 })
|
||||||
eventName!: string;
|
eventName!: string;
|
||||||
|
|
||||||
@Column('varchar', { length: 66 })
|
@Column('varchar', { length: 66, nullable: true })
|
||||||
topic0!: string;
|
topic0!: string;
|
||||||
|
|
||||||
@Column('varchar', { length: 66, nullable: true })
|
@Column('varchar', { length: 66, nullable: true })
|
||||||
@ -39,7 +39,7 @@ export class Event {
|
|||||||
@Column('varchar', { length: 66, nullable: true })
|
@Column('varchar', { length: 66, nullable: true })
|
||||||
topic3!: string | null;
|
topic3!: string | null;
|
||||||
|
|
||||||
@Column('varchar')
|
@Column('varchar', { nullable: true })
|
||||||
data!: string;
|
data!: string;
|
||||||
|
|
||||||
@Column('text')
|
@Column('text')
|
||||||
|
Loading…
Reference in New Issue
Block a user