make activity_log.duration nullable

This commit is contained in:
Hazelnoot 2024-11-18 08:06:30 -05:00
parent 15148b7875
commit 0979392925
2 changed files with 22 additions and 2 deletions

View file

@ -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',