feat(f4): add business-day calendar overrides
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { Column, Entity, Index, PrimaryGeneratedColumn } from 'typeorm';
|
||||
import { TimestampedEntity } from './timestamped.entity';
|
||||
|
||||
@Entity({ name: 'inspection_business_calendar_days' })
|
||||
@Index('uq_inspection_business_calendar_day', ['date'], { unique: true })
|
||||
export class InspectionBusinessCalendarDay extends TimestampedEntity {
|
||||
@PrimaryGeneratedColumn('uuid')
|
||||
id!: string;
|
||||
|
||||
@Column({ type: 'date' })
|
||||
date!: string;
|
||||
|
||||
@Column({ name: 'is_business_day', type: 'boolean', default: false })
|
||||
isBusinessDay!: boolean;
|
||||
|
||||
@Column({ type: 'varchar', length: 200 })
|
||||
label!: string;
|
||||
|
||||
@Column({ name: 'updated_by', type: 'uuid', nullable: true })
|
||||
updatedBy!: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user