Skip to content

Commit

Permalink
Merge pull request #831 from Trystan4861/TRY-0003-MySQL-NULL-Keyword
Browse files Browse the repository at this point in the history
TRY-0003 - Modify adapterMySQL to make history keyword to can be NULL, issue #772
  • Loading branch information
leifermendez authored Aug 29, 2023
2 parents 66db500 + f0e28a5 commit cd34679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/database/src/mysql/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class MyslAdapter {
const sql = `CREATE TABLE ${tableName}
(id INT AUTO_INCREMENT PRIMARY KEY,
ref varchar(255) NOT NULL,
keyword varchar(255) NOT NULL,
keyword varchar(255) NULL,
answer longtext NOT NULL,
refSerialize varchar(255) NOT NULL,
phone varchar(255) NOT NULL,
Expand Down

0 comments on commit cd34679

Please sign in to comment.