mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-19 15:44:02 +02:00
14 lines
402 B
JavaScript
14 lines
402 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.string("dns_transport");
|
|
table.string("doh_query_path");
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("monitor", function (table) {
|
|
table.dropColumn("dns_transport");
|
|
table.dropColumn("doh_query_path");
|
|
});
|
|
};
|