mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
13 lines
355 B
JavaScript
13 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");
|
||
|
});
|
||
|
};
|