Update database/entity/0037-add_contribution_links_table/ContributionLinks.ts

Co-authored-by: Moriz Wahl <moriz.wahl@gmx.de>
This commit is contained in:
clauspeterhuebner 2022-06-09 22:27:54 +02:00 committed by GitHub
parent b65aa5cefc
commit 83c66d052a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,6 +81,6 @@ export class ContributionLinks extends BaseEntity {
@Column({ length: 24, nullable: true, collation: 'utf8mb4_unicode_ci' })
code: string
@Column({ name: 'link_enabled', type: 'boolean', nullable: true, default: null })
linkEnabled: boolean | null
@Column({ name: 'link_enabled', type: 'boolean', default: true })
linkEnabled: boolean
}