mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-22 11:35:56 +00:00
15 lines
402 B
JavaScript
15 lines
402 B
JavaScript
|
exports.up = function (knex) {
|
||
|
// Insert column for custom HTML code
|
||
|
return knex.schema
|
||
|
.alterTable("status_page", function (table) {
|
||
|
table.text("custom_html").nullable().defaultTo(null);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("status_page", function (table) {
|
||
|
table.dropColumn("custom_html");
|
||
|
});
|
||
|
};
|