gg-mysql-connector 1.0.89 → 1.0.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,8 +27,8 @@ class MyDBMigrator {
27
27
  await this.alterIndex(row.tableName, col.COLUMN_NAME, col.IS_INDEX);
28
28
  await this.alterPossibleEnum(row.tableName, col.COLUMN_NAME, col.POSSIBLE_VALUE);
29
29
  await this.alterForeignKey(row.tableName, col);
30
- await this.alterUniqueColumnCombination(row.tableName, row.compoisteUniqueColumn);
31
30
  }
31
+ await this.alterUniqueColumnCombination(row.tableName, row.compoisteUniqueColumn);
32
32
  }
33
33
  console.log("migrate table done");
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gg-mysql-connector",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
@@ -44,11 +44,11 @@ export default class MyDBMigrator {
44
44
  col.POSSIBLE_VALUE
45
45
  )
46
46
  await this.alterForeignKey(row.tableName, col)
47
- await this.alterUniqueColumnCombination(
48
- row.tableName,
49
- row.compoisteUniqueColumn
50
- )
51
47
  }
48
+ await this.alterUniqueColumnCombination(
49
+ row.tableName,
50
+ row.compoisteUniqueColumn
51
+ )
52
52
  }
53
53
  console.log("migrate table done")
54
54
  }