Changed tables metadata to add nullable to stoppedAt

This commit is contained in:
Omar Ajoue 2021-01-04 10:26:43 +01:00
parent 0043af5b64
commit ca6ac51d8d
3 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
startedAt: Date; startedAt: Date;
@Index() @Index()
@Column('datetime') @Column('datetime', { nullable: true })
stoppedAt: Date; stoppedAt: Date;
@Column('json') @Column('json')

View file

@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
startedAt: Date; startedAt: Date;
@Index() @Index()
@Column('timestamp') @Column('timestamp', { nullable: true })
stoppedAt: Date; stoppedAt: Date;
@Column('json') @Column('json')

View file

@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
startedAt: Date; startedAt: Date;
@Index() @Index()
@Column() @Column({ nullable: true })
stoppedAt: Date; stoppedAt: Date;
@Column('simple-json') @Column('simple-json')