forked from Supositware/Haha-Yes
27 lines
586 B
JavaScript
27 lines
586 B
JavaScript
|
'use strict';
|
||
|
module.exports = {
|
||
|
async up(queryInterface, Sequelize) {
|
||
|
await queryInterface.createTable('optouts', {
|
||
|
id: {
|
||
|
allowNull: false,
|
||
|
autoIncrement: true,
|
||
|
primaryKey: true,
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
userID: {
|
||
|
type: Sequelize.BIGINT
|
||
|
},
|
||
|
createdAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
},
|
||
|
updatedAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
async down(queryInterface, Sequelize) {
|
||
|
await queryInterface.dropTable('optouts');
|
||
|
}
|
||
|
};
|