uptime-kuma/db/knex_migrations/2025-02-15-2312-add-wstest.js

14 lines
386 B
JavaScript
Raw Normal View History

2025-02-24 16:06:53 -08:00
// Add websocket ignore headers
2025-02-17 17:04:58 -08:00
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");
});
};