mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-20 06:02:33 +02:00
11 lines
383 B
JavaScript
11 lines
383 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema.alterTable("notification", function (table) {
|
|
table.boolean("disable_url").defaultTo(false).notNullable().comment("Disable URL in Discord notifications");
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("notification", function (table) {
|
|
table.dropColumn("disable_url");
|
|
});
|
|
};
|