@platform-modules/civil-aviation-authority 2.3.121 → 2.3.122

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.
@@ -235,11 +235,11 @@ __decorate([
235
235
  __metadata("design:type", String)
236
236
  ], User.prototype, "religion", void 0);
237
237
  __decorate([
238
- (0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: false }),
238
+ (0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: true }),
239
239
  __metadata("design:type", Number)
240
240
  ], User.prototype, "current_basic_salary", void 0);
241
241
  __decorate([
242
- (0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: false }),
242
+ (0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 3, nullable: true }),
243
243
  __metadata("design:type", Number)
244
244
  ], User.prototype, "previous_basic_salary", void 0);
245
245
  exports.User = User = __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.121",
3
+ "version": "2.3.122",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -133,10 +133,10 @@ export class User extends BaseModel {
133
133
  @Column({ nullable: true })
134
134
  religion?: string;
135
135
 
136
- @Column({ type: "decimal", precision: 10, scale: 3, nullable: false })
136
+ @Column({ type: "decimal", precision: 10, scale: 3, nullable: true })
137
137
  current_basic_salary: number;
138
138
 
139
- @Column({ type: "decimal", precision: 10, scale: 3, nullable: false })
139
+ @Column({ type: "decimal", precision: 10, scale: 3, nullable: true })
140
140
  previous_basic_salary: number;
141
141
 
142
142
  constructor(