mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-19 20:54:36 -05: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");
|
||
|
});
|
||
|
};
|