feat(department): add column of code for department

This commit is contained in:
avicenan
2026-06-22 10:16:03 +09:00
parent 00d0ce7be9
commit a7b5a5a1e7

View File

@ -7,6 +7,13 @@ export class Department {
@PrimaryGeneratedColumn("uuid")
id: string;
@Column({
nullable: true,
length: 64,
unique: true,
})
code: string;
@Column({
nullable: false,
length: 128,