website/migrations/20170925203055-create-postn...

26 lines
574 B
JavaScript

'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('postnotifications', {
id: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true
},
createdAt: Sequelize.DATE,
updatedAt: Sequelize.DATE,
UserId: Sequelize.INTEGER,
PostId: Sequelize.INTEGER,
NotificationId: Sequelize.INTEGER
}, {
charset: 'utf8mb4'
})
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('postnotifications');
}
};