update hospital information entity to allow null values for code field

This commit is contained in:
wayanrivan
2026-06-03 09:05:45 +07:00
parent c523bd9efa
commit 5af65c3a6f

View File

@ -32,7 +32,7 @@ export class HospitalInformation {
@Column({
type: 'text',
nullable: false,
nullable: true,
})
code: string;