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