mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-03-01 08:58:33 +01:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
exports.up = async function (knex) {
|
|
await knex.schema.alterTable("status_page", function (table) {
|
|
table.string("rss_title", 255);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.dropColumn("rss_title");
|
|
});
|
|
};
|