Merge pull request #2841 from omnivore-app/fix/admin-rm-unused-columns

Remove some unused columns from the subscription admin accessor
This commit is contained in:
Jackson Harper 2023-10-03 13:43:45 +08:00 committed by GitHub
commit 7fa27cead5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -288,15 +288,9 @@ export class Subscription extends BaseEntity {
})
status!: SubscriptionStatus
@Column('text', { nullable: true })
description?: string
@Column('text', { nullable: true })
url?: string
@Column('text', { nullable: true })
icon?: string
@Column('enum', {
enum: SubscriptionType,
})