You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-12-01 22:52:06 +02:00
creating integration test for typeorm
This commit is contained in:
@@ -14,9 +14,15 @@ export class DirectoryEntity implements DirectoryDTO {
|
||||
@Column()
|
||||
path: string;
|
||||
|
||||
/**
|
||||
* last time the directory was modified (from outside, eg.: a new photo was added)
|
||||
*/
|
||||
@Column('bigint')
|
||||
public lastModified: number;
|
||||
|
||||
/**
|
||||
* Last time the directory was fully scanned, not only for a few photos to create a preview
|
||||
*/
|
||||
@Column({type: "bigint", nullable: true})
|
||||
public lastScanned: number;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user