@cheetah.js/orm 0.1.41 → 0.1.43
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
|
@@ -18423,7 +18423,6 @@ var require_Context = __commonJS((exports) => {
|
|
|
18423
18423
|
this.req = {};
|
|
18424
18424
|
this.headers = {};
|
|
18425
18425
|
this.locals = {};
|
|
18426
|
-
this.resultStatus = 200;
|
|
18427
18426
|
}
|
|
18428
18427
|
static async createFromRequest(url, request, server) {
|
|
18429
18428
|
const context = new Context_1;
|
|
@@ -243715,7 +243714,8 @@ class PgDriver {
|
|
|
243715
243714
|
isEnum: row.data_type === "USER-DEFINED",
|
|
243716
243715
|
enumItems: row.data_type === "USER-DEFINED" ? enums[`${schema}_${tableName}_${row.column_name}_enum`] : undefined,
|
|
243717
243716
|
precision: row.numeric_precision,
|
|
243718
|
-
scale: row.numeric_scale
|
|
243717
|
+
scale: row.numeric_scale,
|
|
243718
|
+
isDecimal: row.data_type === "numeric"
|
|
243719
243719
|
};
|
|
243720
243720
|
})
|
|
243721
243721
|
};
|
|
@@ -243861,4 +243861,4 @@ export {
|
|
|
243861
243861
|
AfterCreate
|
|
243862
243862
|
};
|
|
243863
243863
|
|
|
243864
|
-
//# debugId=
|
|
243864
|
+
//# debugId=CAFE29B5F82ADC4164756e2164756e21
|