@hedhog/admin 0.0.33 → 0.0.35
Sign up to get free protection for your applications and to get access to all the features.
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()
|