Fix db table type

This commit is contained in:
Maksim Kachynski 2025-06-15 02:31:34 +03:00
parent 1a3946ada5
commit 6508819057
No known key found for this signature in database

View file

@ -1,7 +1,7 @@
exports.up = function (knex) { exports.up = function (knex) {
return knex.schema return knex.schema
.alterTable("monitor", function (table) { .alterTable("monitor", function (table) {
table.string("manual_status").defaultTo(null); table.smallint("manual_status").defaultTo(null);
}); });
}; };