forked from louislam/uptime-kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Knex cannot set a default value for TEXT field (MariaDB) (louisl…
- Loading branch information
Showing
4 changed files
with
72 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
server/utils/knex/lib/dialects/mysql2/schema/mysql2-columncompiler.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const ColumnCompilerMySQL = require("knex/lib/dialects/mysql/schema/mysql-columncompiler"); | ||
const { formatDefault } = require("knex/lib/formatter/formatterUtils"); | ||
const { log } = require("../../../../../../../src/util"); | ||
|
||
class KumaColumnCompiler extends ColumnCompilerMySQL { | ||
/** | ||
* Override defaultTo method to handle default value for TEXT fields | ||
* @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) { | ||
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 is required: https://mariadb.com/kb/en/text/ | ||
return `default (${formatDefault(value, this.type, this.client)})`; | ||
} | ||
return super.defaultTo.apply(this, arguments); | ||
} | ||
} | ||
|
||
module.exports = KumaColumnCompiler; |