mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-23 20:15:56 +00:00
13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
|
exports.up = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("monitor", function (table) {
|
||
|
table.string("smtp_security").defaultTo(null);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema.alterTable("monitor", function (table) {
|
||
|
table.dropColumn("smtp_security");
|
||
|
});
|
||
|
};
|