mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
24 lines
496 B
JavaScript
24 lines
496 B
JavaScript
|
"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');
|
||
|
*/
|
||
|
}
|
||
|
}
|