mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-19 07:44:02 +02:00
Fix db table type
This commit is contained in:
parent
1a3946ada5
commit
6508819057
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue