rake-db 2.36.16 → 2.36.17
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/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -5563,6 +5563,8 @@ const instantiateDbColumn = (ctx, data, domains, dbColumn) => {
|
|
|
5563
5563
|
const arr = new pqb_internal.ArrayColumn(ctx.columnSchemaConfig, column, ctx.columnSchemaConfig.__schemaType);
|
|
5564
5564
|
arr.data.isNullable = dbColumn.isNullable;
|
|
5565
5565
|
arr.data.arrayDims = dbColumn.arrayDims;
|
|
5566
|
+
arr.data.default = column.data.default;
|
|
5567
|
+
column.data.default = void 0;
|
|
5566
5568
|
column = arr;
|
|
5567
5569
|
}
|
|
5568
5570
|
return column;
|