update medical form

This commit is contained in:
avicenan
2026-05-22 11:19:40 +09:00
parent ad263ab5fa
commit f01c9bfa10

View File

@ -12,6 +12,13 @@ export class MedicalForm {
@PrimaryGeneratedColumn("uuid")
id: string;
@Column({
nullable: false,
length: 256,
type: "varchar",
})
title: string;
@Column({
nullable: false,
length: 256,
@ -26,6 +33,13 @@ export class MedicalForm {
})
description: string;
@Column({
nullable: true,
length: 512,
type: "varchar",
})
picture: string;
@Column({
nullable: false,
length: 64,