mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-13 21:04:46 +00:00
13 lines
386 B
JavaScript
13 lines
386 B
JavaScript
// Add websocket ignore headers
|
|
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.boolean("ws_ignore_headers").notNullable().defaultTo(false);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("monitor", function (table) {
|
|
table.dropColumn("ws_ignore_headers");
|
|
});
|
|
};
|