@platform-modules/foreign-ministry 1.3.136 → 1.3.138

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from './BaseModel';
3
+
4
+ @Entity({ name: 'halls' })
5
+ export class HallMaster extends BaseModel {
6
+ @Column({ type: 'varchar', length: 255, nullable: false })
7
+ name: string;
8
+
9
+ @Column({ type: 'int', nullable: true })
10
+ location_id: number | null;
11
+
12
+ constructor(name: string, location_id?: number | null) {
13
+ super();
14
+ this.name = name;
15
+ this.location_id = location_id ?? null;
16
+ }
17
+ }
18
+
@@ -121,6 +121,9 @@ export class MeetingRequests extends BaseModel {
121
121
  @Column({ type: 'varchar', length: 500, nullable: true })
122
122
  meeting_link: string | null;
123
123
 
124
+ @Column({ type: 'text', nullable: true })
125
+ agenda: string | null;
126
+
124
127
  @Column({ type: 'enum', enum: MeetingLocation, nullable: true })
125
128
  meeting_location: MeetingLocation | null;
126
129