260326:0907 Fixing Naming convention missunderstand #03
CI / CD Pipeline / build (push) Successful in 11m23s
CI / CD Pipeline / deploy (push) Failing after 4m12s

This commit is contained in:
admin
2026-03-26 09:07:31 +07:00
parent c1eb79511a
commit 978d66e49e
2 changed files with 3 additions and 3 deletions
@@ -36,7 +36,7 @@ export class VirtualColumnService {
for (const config of configs) { for (const config of configs) {
await this.ensureVirtualColumn(queryRunner, tableName, config); await this.ensureVirtualColumn(queryRunner, tableName, config);
if (config.index_type) { if (config.indexType) {
await this.ensureIndex(queryRunner, tableName, config); await this.ensureIndex(queryRunner, tableName, config);
} }
} }
+2 -2
View File
@@ -328,8 +328,8 @@ export class MasterService {
: null; : null;
const tag = this.tagRepo.create({ const tag = this.tagRepo.create({
...dto, ...dto,
project_id: internalProjectId, projectId: internalProjectId,
created_by: userId, createdBy: userId,
}); });
return this.tagRepo.save(tag); return this.tagRepo.save(tag);
} }