aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/video-tag.ts
blob: ac45374f8fd3dd68323682c3a44225a3de005098 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import * as Sequelize from 'sequelize'

import {
  VideoTagInstance,
  VideoTagAttributes
} from './video-tag-interface'

let VideoTag: Sequelize.Model<VideoTagInstance, VideoTagAttributes>

export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
  VideoTag = sequelize.define<VideoTagInstance, VideoTagAttributes>('VideoTag', {}, {
    indexes: [
      {
        fields: [ 'videoId' ]
      },
      {
        fields: [ 'tagId' ]
      }
    ]
  })

  return VideoTag
}