mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -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;
|
startedAt: Date;
|
||||||
|
|
||||||
@Index()
|
@Index()
|
||||||
@Column('datetime')
|
@Column('datetime', { nullable: true })
|
||||||
stoppedAt: Date;
|
stoppedAt: Date;
|
||||||
|
|
||||||
@Column('json')
|
@Column('json')
|
||||||
|
|
|
@ -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')
|
||||||
|
|
|
@ -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')
|
||||||
|
|
Loading…
Reference in a new issue