From b203a0017f4b7150333024a1b1a5d1d9d21dea76 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Wed, 27 Aug 2025 08:51:15 +0000 Subject: (김준회) ECC I/F 관련 작업 - ECC 인터페이스 수신테이블 notNull 조건 제거 (테스트 데이터 문제) - 수신 라우트의 구조 불일치 문제 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/projects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db/schema/projects.ts') diff --git a/db/schema/projects.ts b/db/schema/projects.ts index ee3dbf27..e4e2553a 100644 --- a/db/schema/projects.ts +++ b/db/schema/projects.ts @@ -5,7 +5,7 @@ export const projects = pgTable("projects", { code: varchar("code", { length: 50 }).notNull(), name: text("name").notNull(), type: varchar("type", { length: 20 }).default("ship").notNull(), - pspid: char('pspid', { length: 24 }).unique(), // 프로젝트ID (ECC), TODO: 매핑 필요 + // pspid: char('pspid', { length: 24 }).unique(), // 프로젝트ID = code 필드 createdAt: timestamp("created_at").defaultNow().notNull(), updatedAt: timestamp("updated_at").defaultNow().notNull(), }) -- cgit v1.2.3