mirror of https://github.com/Chocobozzz/PeerTube
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import * as Sequelize from 'sequelize'
|
|
|
|
import { addMethodsToModel } from '../utils'
|
|
import {
|
|
AccountFollowInstance,
|
|
AccountFollowAttributes,
|
|
|
|
AccountFollowMethods
|
|
} from './account-follow-interface'
|
|
|
|
let AccountFollow: Sequelize.Model<AccountFollowInstance, AccountFollowAttributes>
|
|
|
|
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
|
|
AccountFollow = sequelize.define<AccountFollowInstance, AccountFollowAttributes>('AccountFollow',
|
|
{ },
|
|
{
|
|
indexes: [
|
|
{
|
|
fields: [ 'accountId' ],
|
|
unique: true
|
|
},
|
|
{
|
|
fields: [ 'targetAccountId' ],
|
|
unique: true
|
|
}
|
|
]
|
|
}
|
|
)
|
|
|
|
const classMethods = [
|
|
associate
|
|
]
|
|
addMethodsToModel(AccountFollow, classMethods)
|
|
|
|
return AccountFollow
|
|
}
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
function associate (models) {
|
|
AccountFollow.belongsTo(models.Account, {
|
|
foreignKey: {
|
|
name: 'accountId',
|
|
allowNull: false
|
|
},
|
|
onDelete: 'CASCADE'
|
|
})
|
|
|
|
AccountFollow.belongsTo(models.Account, {
|
|
foreignKey: {
|
|
name: 'targetAccountId',
|
|
allowNull: false
|
|
},
|
|
onDelete: 'CASCADE'
|
|
})
|
|
}
|