gg-mysql-connector 1.0.74 → 1.0.76

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.
@@ -16,7 +16,6 @@ export interface columnContent {
16
16
  IS_INDEX?: boolean;
17
17
  }
18
18
  export interface MyModel {
19
- isSeed?: boolean;
20
19
  tableName: string;
21
20
  columns: [...columnContent[]];
22
21
  meaning?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gg-mysql-connector",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
package/src/myModel.ts CHANGED
@@ -33,7 +33,7 @@ export interface columnContent {
33
33
  IS_INDEX?: boolean
34
34
  }
35
35
  export interface MyModel {
36
- isSeed?: boolean
36
+ // isSeed?: boolean
37
37
  tableName: string
38
38
  columns: [...columnContent[]]
39
39
  meaning?: string