Kuma/db/knex_migrations/2025-22-02-0000-dns-trasnsport.js
2025-02-24 02:03:09 -06:00

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");
});
};