We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e3bba commit 0d54635Copy full SHA for 0d54635
lib/migration.js
@@ -369,7 +369,7 @@ function mixinMigration(MySQL, mysql) {
369
const indexName = self.client.escapeId(propName);
370
let type = '';
371
let kind = '';
372
- if (i.type) {
+ if (i.type && i.kind.toUpperCase() !== 'FULLTEXT') {
373
type = 'USING ' + i.type;
374
}
375
if (kind && type) {
@@ -393,7 +393,7 @@ function mixinMigration(MySQL, mysql) {
393
const iName = self.client.escapeId(indexName);
394
395
396
397
398
399
if (i.kind) {
0 commit comments