mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
12 lines
355 B
JavaScript
12 lines
355 B
JavaScript
// ALTER TABLE monitor ADD description TEXT default null;
|
|
exports.up = function (knex) {
|
|
return knex.schema.table("monitor", function (table) {
|
|
table.text("description").defaultTo(null);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.table("monitor", function (table) {
|
|
table.dropColumn("description");
|
|
});
|
|
};
|