@hedhog/admin 0.0.34 → 0.0.35
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
CHANGED
@@ -118,7 +118,7 @@ export class Migrate implements MigrationInterface {
|
|
118
118
|
.returning('id')
|
119
119
|
.execute();
|
120
120
|
|
121
|
-
const settingGroupId = settingGroup.
|
121
|
+
const settingGroupId = settingGroup.raw[0].id;
|
122
122
|
|
123
123
|
await queryRunner.manager
|
124
124
|
.createQueryBuilder()
|
@@ -159,7 +159,7 @@ export class Migrate implements MigrationInterface {
|
|
159
159
|
.returning('id')
|
160
160
|
.execute();
|
161
161
|
|
162
|
-
const settingId = setting.
|
162
|
+
const settingId = setting.raw[0].id;
|
163
163
|
|
164
164
|
await queryRunner.manager
|
165
165
|
.createQueryBuilder()
|