14 lines
310 B
JavaScript
14 lines
310 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("search_queries", "score", {
|
|
type: Sequelize.INTEGER,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn("search_queries", "score");
|
|
},
|
|
};
|