mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-15 01:54:10 -08:00
18 lines
479 B
JavaScript
18 lines
479 B
JavaScript
|
exports.up = function (knex) {
|
||
|
return knex.schema.alterTable("monitor", function (table) {
|
||
|
table.text("rabbitmq_nodes");
|
||
|
table.string("rabbitmq_username");
|
||
|
table.string("rabbitmq_password");
|
||
|
});
|
||
|
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema.alterTable("monitor", function (table) {
|
||
|
table.dropColumn("rabbitmq_nodes");
|
||
|
table.dropColumn("rabbitmq_username");
|
||
|
table.dropColumn("rabbitmq_password");
|
||
|
});
|
||
|
|
||
|
};
|