aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video-tag-interface.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/video-tag-interface.ts')
-rw-r--r--server/models/video-tag-interface.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video-tag-interface.ts b/server/models/video-tag-interface.ts
index 468827b8c..f928cecff 100644
--- a/server/models/video-tag-interface.ts
+++ b/server/models/video-tag-interface.ts
@@ -9,7 +9,7 @@ export interface VideoTagClass {
9export interface VideoTagAttributes { 9export interface VideoTagAttributes {
10} 10}
11 11
12export interface VideoTagInstance extends Sequelize.Instance<VideoTagAttributes> { 12export interface VideoTagInstance extends VideoTagClass, VideoTagAttributes, Sequelize.Instance<VideoTagAttributes> {
13 id: number 13 id: number
14 createdAt: Date 14 createdAt: Date
15 updatedAt: Date 15 updatedAt: Date