mirror of
https://github.com/outline/outline.git
synced 2026-06-30 11:44:24 +03:00
1c7bb65c7a
Co-authored-by: Tom Moor <tom.moor@gmail.com>
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");
|
|
}
|
|
};
|