test-entity-library-asm 2.4.1 → 2.4.3

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.
@@ -72,7 +72,9 @@ var DiscountCodeUser = /** @class */ (function () {
72
72
  __metadata("design:type", Date)
73
73
  ], DiscountCodeUser.prototype, "created", void 0);
74
74
  __decorate([
75
- (0, typeorm_1.Column)({ type: 'date', comment: 'Fecha de expiración del registro.' }),
75
+ (0, typeorm_1.Column)({
76
+ comment: 'Fecha de expiración del registro.',
77
+ }),
76
78
  __metadata("design:type", String)
77
79
  ], DiscountCodeUser.prototype, "expiration", void 0);
78
80
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -62,7 +62,9 @@ export class DiscountCodeUser {
62
62
  })
63
63
  created: Date
64
64
 
65
- @Column({ type: 'date', comment: 'Fecha de expiración del registro.' })
65
+ @Column({
66
+ comment: 'Fecha de expiración del registro.',
67
+ })
66
68
  expiration: string
67
69
 
68
70
  @ManyToOne(() => Partner, (partner) => partner.discount_code_partners, {