Fix #5087
parent
46d8744fa4
commit
5731c596e1
@ -0,0 +1,13 @@
|
|||||||
|
// 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();
|
||||||
|
});
|
||||||
|
};
|
Loading…
Reference in new issue