@vibeorm/migrate 1.0.2 → 1.1.1
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.
- package/package.json +2 -2
- package/src/introspector.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeorm/migrate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Migration, introspection, and schema diff toolkit for VibeORM",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -37,6 +37,6 @@
|
|
|
37
37
|
"bun": ">=1.1.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@vibeorm/parser": "1.
|
|
40
|
+
"@vibeorm/parser": "1.1.1"
|
|
41
41
|
}
|
|
42
42
|
}
|
package/src/introspector.ts
CHANGED
|
@@ -422,6 +422,7 @@ export async function introspect(params: { executor: SqlExecutor }): Promise<Sch
|
|
|
422
422
|
isId,
|
|
423
423
|
isUnique,
|
|
424
424
|
default: parsedDefault,
|
|
425
|
+
documentation: undefined,
|
|
425
426
|
};
|
|
426
427
|
fields.push(enumField);
|
|
427
428
|
} else {
|
|
@@ -444,6 +445,7 @@ export async function introspect(params: { executor: SqlExecutor }): Promise<Sch
|
|
|
444
445
|
isUpdatedAt: false, // Can't detect @updatedAt from DB
|
|
445
446
|
default: parsedDefault,
|
|
446
447
|
nativeType: undefined,
|
|
448
|
+
documentation: undefined,
|
|
447
449
|
};
|
|
448
450
|
fields.push(scalarField);
|
|
449
451
|
}
|