mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-06 13:12:33 +02:00
4 lines
164 B
JavaScript
4 lines
164 B
JavaScript
exports.up = function (knex) {
|
|
return knex('monitor').whereNull('json_path_operator').update('json_path_operator', '==');
|
|
};
|
|
exports.down = function (knex) {};
|