update medical form
This commit is contained in:
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user