mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
24b4e8dcb2
https://linear.app/unleash/issue/2-1822/incoming-webhooks-add-description A description field will help us better distinguish incoming webhooks and their purpose.
13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
exports.up = function (db, cb) {
|
|
db.runSql(
|
|
`
|
|
ALTER TABLE incoming_webhooks ADD COLUMN IF NOT EXISTS description TEXT;
|
|
`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, callback) {
|
|
callback();
|
|
};
|