test-entity-library-asm 2.7.1 → 2.7.2

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.
@@ -61,14 +61,12 @@ var DiscountCodeCompany = /** @class */ (function () {
61
61
  ], DiscountCodeCompany.prototype, "created", void 0);
62
62
  __decorate([
63
63
  (0, typeorm_1.Column)({
64
- type: 'date',
65
64
  comment: 'Fecha inicial del descuento.',
66
65
  }),
67
66
  __metadata("design:type", String)
68
67
  ], DiscountCodeCompany.prototype, "start", void 0);
69
68
  __decorate([
70
69
  (0, typeorm_1.Column)({
71
- type: 'date',
72
70
  nullable: true,
73
71
  comment: 'Fecha de expiración del registro.',
74
72
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.7.1",
3
+ "version": "2.7.2",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -54,13 +54,11 @@ export class DiscountCodeCompany {
54
54
  created: Date
55
55
 
56
56
  @Column({
57
- type: 'date',
58
57
  comment: 'Fecha inicial del descuento.',
59
58
  })
60
59
  start: string
61
60
 
62
61
  @Column({
63
- type: 'date',
64
62
  nullable: true,
65
63
  comment: 'Fecha de expiración del registro.',
66
64
  })