mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
Changed tables metadata to add nullable to stoppedAt
This commit is contained in:
parent
0043af5b64
commit
ca6ac51d8d
|
@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
|
|||
startedAt: Date;
|
||||
|
||||
@Index()
|
||||
@Column('datetime')
|
||||
@Column('datetime', { nullable: true })
|
||||
stoppedAt: Date;
|
||||
|
||||
@Column('json')
|
||||
|
|
|
@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
|
|||
startedAt: Date;
|
||||
|
||||
@Index()
|
||||
@Column('timestamp')
|
||||
@Column('timestamp', { nullable: true })
|
||||
stoppedAt: Date;
|
||||
|
||||
@Column('json')
|
||||
|
|
|
@ -40,7 +40,7 @@ export class ExecutionEntity implements IExecutionFlattedDb {
|
|||
startedAt: Date;
|
||||
|
||||
@Index()
|
||||
@Column()
|
||||
@Column({ nullable: true })
|
||||
stoppedAt: Date;
|
||||
|
||||
@Column('simple-json')
|
||||
|
|
Loading…
Reference in a new issue