15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("revisions", "emoji", {
|
|
type: Sequelize.STRING,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
async down (queryInterface) {
|
|
await queryInterface.removeColumn("revisions", "emoji");
|
|
}
|
|
};
|