clhq-postgres-module 1.1.0-alpha.95 → 1.1.0-alpha.96
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.
|
@@ -59,7 +59,13 @@ __decorate([
|
|
|
59
59
|
__metadata("design:type", String)
|
|
60
60
|
], Asset.prototype, "categoryId", void 0);
|
|
61
61
|
__decorate([
|
|
62
|
-
(0, typeorm_1.Column)({
|
|
62
|
+
(0, typeorm_1.Column)({
|
|
63
|
+
name: 'unique_id',
|
|
64
|
+
type: 'varchar',
|
|
65
|
+
length: 255,
|
|
66
|
+
nullable: true,
|
|
67
|
+
select: false
|
|
68
|
+
}),
|
|
63
69
|
__metadata("design:type", String)
|
|
64
70
|
], Asset.prototype, "uniqueId", void 0);
|
|
65
71
|
__decorate([
|
|
@@ -67,7 +73,12 @@ __decorate([
|
|
|
67
73
|
__metadata("design:type", String)
|
|
68
74
|
], Asset.prototype, "name", void 0);
|
|
69
75
|
__decorate([
|
|
70
|
-
(0, typeorm_1.Column)({
|
|
76
|
+
(0, typeorm_1.Column)({
|
|
77
|
+
name: 'original_filename',
|
|
78
|
+
type: 'varchar',
|
|
79
|
+
length: 500,
|
|
80
|
+
nullable: true
|
|
81
|
+
}),
|
|
71
82
|
__metadata("design:type", String)
|
|
72
83
|
], Asset.prototype, "originalFilename", void 0);
|
|
73
84
|
__decorate([
|
|
@@ -107,7 +118,13 @@ __decorate([
|
|
|
107
118
|
__metadata("design:type", Number)
|
|
108
119
|
], Asset.prototype, "height", void 0);
|
|
109
120
|
__decorate([
|
|
110
|
-
(0, typeorm_1.Column)({
|
|
121
|
+
(0, typeorm_1.Column)({
|
|
122
|
+
name: 'frame_rate',
|
|
123
|
+
type: 'decimal',
|
|
124
|
+
precision: 10,
|
|
125
|
+
scale: 2,
|
|
126
|
+
nullable: true
|
|
127
|
+
}),
|
|
111
128
|
__metadata("design:type", Number)
|
|
112
129
|
], Asset.prototype, "frameRate", void 0);
|
|
113
130
|
__decorate([
|
|
@@ -123,7 +140,12 @@ __decorate([
|
|
|
123
140
|
__metadata("design:type", Object)
|
|
124
141
|
], Asset.prototype, "metadata", void 0);
|
|
125
142
|
__decorate([
|
|
126
|
-
(0, typeorm_1.Column)({
|
|
143
|
+
(0, typeorm_1.Column)({
|
|
144
|
+
name: 'upload_status',
|
|
145
|
+
type: 'varchar',
|
|
146
|
+
length: 50,
|
|
147
|
+
default: 'uploading'
|
|
148
|
+
}),
|
|
127
149
|
__metadata("design:type", String)
|
|
128
150
|
], Asset.prototype, "uploadStatus", void 0);
|
|
129
151
|
__decorate([
|