mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-30 18:24:03 +00:00
Compare commits
1 commit
5b4853f9ba
...
f9e1f2840e
Author | SHA1 | Date | |
---|---|---|---|
|
f9e1f2840e |
2 changed files with 2 additions and 15 deletions
|
@ -1,13 +0,0 @@
|
||||||
// Update info_json column to LONGTEXT mainly for MariaDB
|
|
||||||
exports.up = function (knex) {
|
|
||||||
return knex.schema
|
|
||||||
.alterTable("monitor_tls_info", function (table) {
|
|
||||||
table.text("info_json", "longtext").alter();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.down = function (knex) {
|
|
||||||
return knex.schema.alterTable("monitor_tls_info", function (table) {
|
|
||||||
table.text("info_json", "text").alter();
|
|
||||||
});
|
|
||||||
};
|
|
|
@ -775,6 +775,8 @@ class Database {
|
||||||
await migrationServer.start(port, hostname);
|
await migrationServer.start(port, hostname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await Settings.set("migrateAggregateTableState", "migrating");
|
||||||
|
|
||||||
log.info("db", "Migrating Aggregate Table");
|
log.info("db", "Migrating Aggregate Table");
|
||||||
|
|
||||||
log.info("db", "Getting list of unique monitors");
|
log.info("db", "Getting list of unique monitors");
|
||||||
|
@ -797,8 +799,6 @@ class Database {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await Settings.set("migrateAggregateTableState", "migrating");
|
|
||||||
|
|
||||||
let progressPercent = 0;
|
let progressPercent = 0;
|
||||||
let part = 100 / monitors.length;
|
let part = 100 / monitors.length;
|
||||||
let i = 1;
|
let i = 1;
|
||||||
|
|
Loading…
Reference in a new issue