2017-12-29 13:10:13 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
|
|
|
|
async function up (utils: {
|
2020-01-31 10:56:52 -05:00
|
|
|
transaction: Sequelize.Transaction
|
|
|
|
queryInterface: Sequelize.QueryInterface
|
2017-12-29 13:10:13 -05:00
|
|
|
sequelize: Sequelize.Sequelize
|
|
|
|
}): Promise<void> {
|
|
|
|
await utils.queryInterface.removeConstraint('actor', 'actor_avatarId_fkey')
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
await utils.queryInterface.addConstraint('actor', {
|
|
|
|
fields: [ 'avatarId' ],
|
2017-12-29 13:10:13 -05:00
|
|
|
type: 'foreign key',
|
|
|
|
references: {
|
|
|
|
table: 'avatar',
|
|
|
|
field: 'id'
|
|
|
|
},
|
|
|
|
onDelete: 'set null',
|
|
|
|
onUpdate: 'CASCADE'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|