make activity_log.duration nullable
This commit is contained in:
parent
15148b7875
commit
0979392925
2 changed files with 22 additions and 2 deletions
|
|
@ -23,8 +23,8 @@ export class SkActivityLog {
|
|||
/**
|
||||
* Processing duration in milliseconds
|
||||
*/
|
||||
@Column('double precision', { default: 0 })
|
||||
public duration = 0;
|
||||
@Column('double precision', { nullable: true })
|
||||
public duration: number | null = null;
|
||||
|
||||
@Column({
|
||||
type: 'text',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue