mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
40 lines
882 B
JavaScript
40 lines
882 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
return queryInterface.createTable('event_notifications', {
|
|
createdAt: {
|
|
allowNull: false,
|
|
type: Sequelize.DATE
|
|
},
|
|
updatedAt: {
|
|
allowNull: false,
|
|
type: Sequelize.DATE
|
|
},
|
|
eventId: {
|
|
type: Sequelize.INTEGER,
|
|
primaryKey: true,
|
|
references: {
|
|
model: 'events',
|
|
key: 'id',
|
|
},
|
|
onUpdate: 'CASCADE',
|
|
onDelete: 'CASCADE',
|
|
},
|
|
notificationId: {
|
|
primaryKey: true,
|
|
type: Sequelize.INTEGER,
|
|
references: {
|
|
model: 'notifications',
|
|
key: 'id',
|
|
},
|
|
onUpdate: 'CASCADE',
|
|
onDelete: 'CASCADE',
|
|
}
|
|
})
|
|
},
|
|
|
|
down: (queryInterface, Sequelize) => {
|
|
return queryInterface.dropTable('event_notifications')
|
|
}
|
|
}
|