mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-04 08:25:57 +00:00
15 lines
391 B
JavaScript
15 lines
391 B
JavaScript
|
exports.up = function (knex) {
|
||
|
// Add new column monitor.ip_family
|
||
|
return knex.schema
|
||
|
.alterTable("monitor", function (table) {
|
||
|
table.integer("ip_family").defaultTo(0).notNullable();
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("monitor", function (table) {
|
||
|
table.dropColumn("ip_family");
|
||
|
});
|
||
|
};
|