mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
46432618e1
* Feat: Add json-query MQTT monitor type * Fix: Allow result to be null * Fix: Remove unused parameter * Chore: Update JSDoc * Fix: Add default if checkType is not set --------- Co-authored-by: Louis Lam <[email protected]>
17 lines
465 B
JavaScript
17 lines
465 B
JavaScript
exports.up = function (knex) {
|
|
// Add new column monitor.mqtt_check_type
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.string("mqtt_check_type", 255).notNullable().defaultTo("keyword");
|
|
});
|
|
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
// Drop column monitor.mqtt_check_type
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.dropColumn("mqtt_check_type");
|
|
});
|
|
};
|