Apply suggestion from @CommanderStorm

This commit is contained in:
Frank Elsinga 2026-01-13 02:10:04 +01:00 committed by GitHub
parent 27a84759b1
commit b0599b3998
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ exports.up = function (knex) {
return knex.schema.alterTable("monitor", function (table) {
table.boolean("save_response").notNullable().defaultTo(false);
table.boolean("save_error_response").notNullable().defaultTo(true);
table.integer("response_max_length").notNullable().defaultTo(256); // Default 256B
table.integer("response_max_length").notNullable().defaultTo(1024); // Default 1KB
});
};