aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/videoTag.js
blob: 0f2b20838f40b91d6c7aab1e211ac62f58740d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
'use strict'

// ---------------------------------------------------------------------------

module.exports = function (sequelize, DataTypes) {
  const VideoTag = sequelize.define('VideoTag', {}, {})

  return VideoTag
}