File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ export class QueryRunner<
175
175
} ) ) ,
176
176
] ,
177
177
idTable : this . schema . tableName ,
178
- idColumn : "project_phase_id" ,
179
- idSequence : "project_phase_id_seq" ,
178
+ idColumn : this . schema . idColumn ?? undefined ,
179
+ idSequence : this . schema . idSequence ?? undefined ,
180
180
} ,
181
181
} ,
182
182
} ;
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import { AuditColumns } from "../common/AuditColumns";
5
5
export const ProjectPhaseSchema : Schema = {
6
6
dbSchema : "tcs_catalog" ,
7
7
tableName : "project_phase" ,
8
+ idColumn : "project_phase_id" ,
9
+ idSequence : "project_phase_id_seq" ,
8
10
columns : {
9
11
duration : { name : "duration" , type : ColumnType . COLUMN_TYPE_INT } ,
10
12
projectId : { name : "project_id" , type : ColumnType . COLUMN_TYPE_INT } ,
You can’t perform that action at this time.
0 commit comments