mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-21 18:58:58 +01:00
dc3ad88fe1
Co-authored-by: Dan Sullivan <dan@symbiosgroup.co.uk> Co-authored-by: Frank Elsinga <frank@elsinga.de>
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.boolean("cache_bust").notNullable().defaultTo(false);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.dropColumn("cache_bust");
|
|
});
|
|
};
|