test-entity-library-asm 3.3.0 → 3.3.1

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.
@@ -90,6 +90,7 @@ var Square = /** @class */ (function () {
90
90
  ], Square.prototype, "maximum_number_locals", void 0);
91
91
  __decorate([
92
92
  (0, typeorm_1.Column)({
93
+ type: "varchar",
93
94
  length: 50,
94
95
  nullable: true,
95
96
  default: null,
@@ -99,6 +100,7 @@ var Square = /** @class */ (function () {
99
100
  ], Square.prototype, "email", void 0);
100
101
  __decorate([
101
102
  (0, typeorm_1.Column)({
103
+ type: "varchar",
102
104
  length: 15,
103
105
  nullable: true,
104
106
  default: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -83,6 +83,7 @@ export class Square {
83
83
  maximum_number_locals: number;
84
84
 
85
85
  @Column({
86
+ type: "varchar",
86
87
  length: 50,
87
88
  nullable: true,
88
89
  default: null,
@@ -91,6 +92,7 @@ export class Square {
91
92
  email: string | null;
92
93
 
93
94
  @Column({
95
+ type: "varchar",
94
96
  length: 15,
95
97
  nullable: true,
96
98
  default: null,