Add activitypub migration script
[oweals/peertube.git] / server / models / video / video-tag-interface.ts
1 import * as Sequelize from 'sequelize'
2
3 export namespace VideoTagMethods {
4 }
5
6 export interface VideoTagClass {
7 }
8
9 export interface VideoTagAttributes {
10 }
11
12 export interface VideoTagInstance extends VideoTagClass, VideoTagAttributes, Sequelize.Instance<VideoTagAttributes> {
13   id: number
14   createdAt: Date
15   updatedAt: Date
16 }
17
18 export interface VideoTagModel extends VideoTagClass, Sequelize.Model<VideoTagInstance, VideoTagAttributes> {}