docs: Phase 3.3 ComponentStandardService 완료 문서 업데이트 및 코드 포맷 정리

- PRISMA_TO_RAW_QUERY_MIGRATION_PLAN.md 업데이트
  - ComponentStandardService (15개) 완료 표시
  - Phase 3 진행률 반영
- componentStandardService.ts 코드 포맷 정리

Phase 3 진행률: 54/162 (33.3%)
전체 진행률: 305/444 (68.7%)
This commit is contained in:
kjs
2025-10-01 10:51:09 +09:00
parent 2331e3fd20
commit a5653eee3e
2 changed files with 16 additions and 7 deletions

View File

@@ -257,10 +257,9 @@ class ComponentStandardService {
async deleteComponent(component_code: string) {
const existing = await this.getComponent(component_code);
await query(
`DELETE FROM component_standards WHERE component_code = $1`,
[component_code]
);
await query(`DELETE FROM component_standards WHERE component_code = $1`, [
component_code,
]);
return { message: `컴포넌트가 삭제되었습니다: ${component_code}` };
}