forked from yoone/API
refactor(entity): 将可选字段明确标记为可选类型
This commit is contained in:
parent
87ca4eadce
commit
5261011daa
|
|
@ -16,9 +16,6 @@ export class Site {
|
|||
@Column({ name: 'webhook_url', length: 255, nullable: true })
|
||||
webhookUrl?: string;
|
||||
|
||||
@Column({ name: 'webhook_url', length: 255, nullable: true })
|
||||
webhookUrl: string;
|
||||
|
||||
@Column({ length: 255, nullable: true })
|
||||
consumerKey?: string;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue