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;
@Index()
@Column('datetime')
@Column('datetime', { nullable: true })
stoppedAt: Date;
@Column('json')

View file

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

View file

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