@cheetah.js/orm 0.1.40 → 0.1.42
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/dist/bun/index.js
CHANGED
|
@@ -243713,7 +243713,10 @@ class PgDriver {
|
|
|
243713
243713
|
type: row.data_type,
|
|
243714
243714
|
foreignKeys: this.getForeignKeys(constraints, row),
|
|
243715
243715
|
isEnum: row.data_type === "USER-DEFINED",
|
|
243716
|
-
enumItems: row.data_type === "USER-DEFINED" ? enums[`${schema}_${tableName}_${row.column_name}_enum`] : undefined
|
|
243716
|
+
enumItems: row.data_type === "USER-DEFINED" ? enums[`${schema}_${tableName}_${row.column_name}_enum`] : undefined,
|
|
243717
|
+
precision: row.numeric_precision,
|
|
243718
|
+
scale: row.numeric_scale,
|
|
243719
|
+
isDecimal: row.data_type === "numeric"
|
|
243717
243720
|
};
|
|
243718
243721
|
})
|
|
243719
243722
|
};
|
|
@@ -243859,4 +243862,4 @@ export {
|
|
|
243859
243862
|
AfterCreate
|
|
243860
243863
|
};
|
|
243861
243864
|
|
|
243862
|
-
//# debugId=
|
|
243865
|
+
//# debugId=BF35FF88FE4D6BEE64756e2164756e21
|