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:
@@ -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}` };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user