mirror of
https://github.com/outline/outline.git
synced 2026-06-30 11:44:24 +03:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
queryInterface.addColumn('documents', 'emoji', {
|
|
type: Sequelize.STRING,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
down: (queryInterface, _Sequelize) => {
|
|
queryInterface.removeColumn('documents', 'emoji');
|
|
},
|
|
};
|