aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-file.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video/video-file.ts')
-rw-r--r--server/models/video/video-file.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/models/video/video-file.ts b/server/models/video/video-file.ts
index 5e8d29d0a..106f9602b 100644
--- a/server/models/video/video-file.ts
+++ b/server/models/video/video-file.ts
@@ -194,6 +194,7 @@ export class VideoFileModel extends Model<Partial<AttributesOnly<VideoFileModel>
194 @Column 194 @Column
195 metadataUrl: string 195 metadataUrl: string
196 196
197 // Could be null for remote files
197 @AllowNull(true) 198 @AllowNull(true)
198 @Column 199 @Column
199 fileUrl: string 200 fileUrl: string
@@ -203,6 +204,7 @@ export class VideoFileModel extends Model<Partial<AttributesOnly<VideoFileModel>
203 @Column 204 @Column
204 filename: string 205 filename: string
205 206
207 // Could be null for remote files
206 @AllowNull(true) 208 @AllowNull(true)
207 @Column 209 @Column
208 torrentUrl: string 210 torrentUrl: string