feat: added organ

This commit is contained in:
2026-07-26 21:01:31 +03:30
parent efd468873d
commit 19e648a299
9 changed files with 137 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
import { BaseEntity } from 'src/common/entities/base.entity';
import { Column, Entity } from 'typeorm';
@Entity('organs')
export class Organ extends BaseEntity {
@Column({
type: 'varchar',
length: 50,
})
name: string;
@Column({
type: 'varchar',
})
logo: string;
}