add score to library_item entity

This commit is contained in:
Hongbo Wu 2024-05-27 11:12:07 +08:00
parent 80841bf9af
commit f6424c3bd2

View file

@ -213,4 +213,7 @@ export class LibraryItem {
@Column('timestamptz')
digestedAt?: Date
@Column('float')
score?: number
}