mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Update subscription columns in admin
This commit is contained in:
parent
64fe31a717
commit
5579a2827b
1 changed files with 5 additions and 2 deletions
|
|
@ -306,8 +306,11 @@ export class Subscription extends BaseEntity {
|
|||
@Column('integer', { default: 0 })
|
||||
count!: number
|
||||
|
||||
@Column({ type: 'timestamp', name: 'last_fetched_at', nullable: true })
|
||||
lastFetchedAt?: Date | null
|
||||
@Column({ type: 'timestamp', name: 'refreshed_at', nullable: true })
|
||||
refreshedAt?: Date | null
|
||||
|
||||
@Column({ type: 'timestamp', name: 'most_recent_item_date', nullable: true })
|
||||
mostRecentItemDate?: Date | null
|
||||
|
||||
@Column({ type: 'timestamp', name: 'created_at' })
|
||||
createdAt!: Date
|
||||
|
|
|
|||
Loading…
Reference in a new issue