update: responsible party consent done

This commit is contained in:
wayanrivan
2026-04-13 10:51:30 +07:00
parent f340a5bfbc
commit 30ea3b2fb1

View File

@ -0,0 +1,33 @@
import { Entity,
OneToOne,
PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, ManyToOne, JoinColumn, ManyToMany } from "typeorm";
@Entity("responsible_party_consent")
export class ResponsiblePartyConsent {
@PrimaryGeneratedColumn("uuid")
id: string;
@Column({
nullable: true,
type: "text",
})
body: string;
@CreateDateColumn()
created_at: Date;
@Column({ nullable: true, length: 256 })
created_by: string;
@UpdateDateColumn({ nullable: true })
updated_at: Date;
@Column({ nullable: true, length: 256 })
updated_by: string;
@DeleteDateColumn({ nullable: true })
deleted_at: Date;
@Column({ nullable: true, length: 256 })
deleted_by: string;
}