Colubrina/backend/migrations/20220814060016-pollsDates.js

24 lines
496 B
JavaScript
Raw Normal View History

2022-08-14 22:06:56 +10:00
"use strict"
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn("PollAnswers", "createdAt", {
type: Sequelize.DATE,
allowNull: false
})
await queryInterface.addColumn("PollAnswers", "updatedAt", {
type: Sequelize.DATE,
allowNull: false
})
},
async down(queryInterface, Sequelize) {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}