test-entity-library-asm 2.4.7 → 2.4.8

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.
@@ -33,14 +33,14 @@ var MasterNotification = /** @class */ (function () {
33
33
  ], MasterNotification.prototype, "master", void 0);
34
34
  __decorate([
35
35
  (0, typeorm_1.Column)({
36
- length: 50,
36
+ length: 200,
37
37
  comment: 'Nombre de la notificación.',
38
38
  }),
39
39
  __metadata("design:type", String)
40
40
  ], MasterNotification.prototype, "name", void 0);
41
41
  __decorate([
42
42
  (0, typeorm_1.Column)({
43
- length: 200,
43
+ length: 400,
44
44
  nullable: true,
45
45
  comment: 'Descripción de la notificación.',
46
46
  }),
@@ -33,14 +33,14 @@ var PartnerNotification = /** @class */ (function () {
33
33
  ], PartnerNotification.prototype, "partner", void 0);
34
34
  __decorate([
35
35
  (0, typeorm_1.Column)({
36
- length: 50,
36
+ length: 200,
37
37
  comment: 'Nombre de la notificación.',
38
38
  }),
39
39
  __metadata("design:type", String)
40
40
  ], PartnerNotification.prototype, "name", void 0);
41
41
  __decorate([
42
42
  (0, typeorm_1.Column)({
43
- length: 200,
43
+ length: 400,
44
44
  nullable: true,
45
45
  comment: 'Descripción de la notificación.',
46
46
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.4.7",
3
+ "version": "2.4.8",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,13 +28,13 @@ export class MasterNotification {
28
28
  master: Master
29
29
 
30
30
  @Column({
31
- length: 50,
31
+ length: 200,
32
32
  comment: 'Nombre de la notificación.',
33
33
  })
34
34
  name: string
35
35
 
36
36
  @Column({
37
- length: 200,
37
+ length: 400,
38
38
  nullable: true,
39
39
  comment: 'Descripción de la notificación.',
40
40
  })
@@ -26,13 +26,13 @@ export class PartnerNotification {
26
26
  partner: Partner
27
27
 
28
28
  @Column({
29
- length: 50,
29
+ length: 200,
30
30
  comment: 'Nombre de la notificación.',
31
31
  })
32
32
  name: string
33
33
 
34
34
  @Column({
35
- length: 200,
35
+ length: 400,
36
36
  nullable: true,
37
37
  comment: 'Descripción de la notificación.',
38
38
  })