mirror of
https://github.com/outline/outline.git
synced 2026-06-30 11:44:24 +03:00
7a590550c9
Co-authored-by: Tom Moor <tom.moor@gmail.com>
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
return queryInterface.addColumn("webhook_subscriptions", "secret", {
|
|
type: Sequelize.BLOB,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
return queryInterface.removeColumn("webhook_subscriptions", "secret");
|
|
}
|
|
};
|