uptime-kuma/server/utils/knex/lib/dialects/mysql2/schema/mysql2-columncompiler.js

23 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-10-27 16:42:25 +00:00
const ColumnCompilerMySQL = require("knex/lib/dialects/mysql/schema/mysql-columncompiler");
2024-10-28 04:56:42 +00:00
const { formatDefault } = require("knex/lib/formatter/formatterUtils");
const { log } = require("../../../../../../../src/util");
2024-10-27 16:42:25 +00:00
class KumaColumnCompiler extends ColumnCompilerMySQL {
/**
2024-10-28 04:56:42 +00:00
* Override defaultTo method to handle default value for TEXT fields
2024-10-27 16:42:25 +00:00
* @param {any} value Value
* @returns {string|void} Default value (Don't understand why it can return void or string, but it's the original code, lol)
*/
defaultTo(value) {
2024-10-28 04:56:42 +00:00
if (this.type === "text" && typeof value === "string") {
log.debug("defaultTo", `${this.args[0]}: ${this.type} ${value} ${typeof value}`);
// MySQL 8.0 is required and only if the value is written as an expression: https://dev.mysql.com/doc/refman/8.0/en/data-type-defaults.html
// MariaDB 10.2.1 is required: https://mariadb.com/kb/en/text/
return `default (${formatDefault(value, this.type, this.client)})`;
2024-10-27 16:42:25 +00:00
}
2024-10-28 04:56:42 +00:00
return super.defaultTo.apply(this, arguments);
2024-10-27 16:42:25 +00:00
}
}
module.exports = KumaColumnCompiler;