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.mjs
CHANGED
|
@@ -5540,6 +5540,8 @@ const instantiateDbColumn = (ctx, data, domains, dbColumn) => {
|
|
|
5540
5540
|
const arr = new ArrayColumn(ctx.columnSchemaConfig, column, ctx.columnSchemaConfig.__schemaType);
|
|
5541
5541
|
arr.data.isNullable = dbColumn.isNullable;
|
|
5542
5542
|
arr.data.arrayDims = dbColumn.arrayDims;
|
|
5543
|
+
arr.data.default = column.data.default;
|
|
5544
|
+
column.data.default = void 0;
|
|
5543
5545
|
column = arr;
|
|
5544
5546
|
}
|
|
5545
5547
|
return column;
|