added a migration

This commit is contained in:
Frank Elsinga 2024-10-31 23:50:09 +01:00
parent 0254e72177
commit 1cebe001a7

View file

@ -0,0 +1,4 @@
exports.up = function (knex) {
return knex('monitor').whereNull('json_path_operator').update('json_path_operator', '==');
};
exports.down = function (knex) {};