test-entity-library-asm 2.6.29 → 2.7.0
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.
|
@@ -97,7 +97,7 @@ var DiscountCodeCompany = /** @class */ (function () {
|
|
|
97
97
|
onDelete: 'CASCADE',
|
|
98
98
|
onUpdate: 'NO ACTION',
|
|
99
99
|
}),
|
|
100
|
-
(0, typeorm_1.JoinColumn)({ name: '
|
|
100
|
+
(0, typeorm_1.JoinColumn)({ name: 'updated_by' }),
|
|
101
101
|
__metadata("design:type", Master_1.Master)
|
|
102
102
|
], DiscountCodeCompany.prototype, "updated_by", void 0);
|
|
103
103
|
__decorate([
|
|
@@ -45,7 +45,7 @@ var PartnerRole = /** @class */ (function () {
|
|
|
45
45
|
], PartnerRole.prototype, "name", void 0);
|
|
46
46
|
__decorate([
|
|
47
47
|
(0, typeorm_1.Column)({
|
|
48
|
-
length:
|
|
48
|
+
length: 200,
|
|
49
49
|
nullable: true,
|
|
50
50
|
comment: 'Id de la variable que se encuentra en los archivos "locale" para el multilenguaje.\r\n\r\nCabe recordar qué los usuarios también pueden crear roles, estos deben ir normal, sin id para el lenguaje.',
|
|
51
51
|
}),
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@ export class PartnerRole {
|
|
|
40
40
|
name: string
|
|
41
41
|
|
|
42
42
|
@Column({
|
|
43
|
-
length:
|
|
43
|
+
length: 200,
|
|
44
44
|
nullable: true,
|
|
45
45
|
comment:
|
|
46
46
|
'Id de la variable que se encuentra en los archivos "locale" para el multilenguaje.\r\n\r\nCabe recordar qué los usuarios también pueden crear roles, estos deben ir normal, sin id para el lenguaje.',
|