diff options
| author | joonhoekim <26rote@gmail.com> | 2025-08-27 08:51:15 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-08-27 08:51:15 +0000 |
| commit | b203a0017f4b7150333024a1b1a5d1d9d21dea76 (patch) | |
| tree | 4935c9d28ad6467903ab118a2dde4f3560c649ec /db/schema/projects.ts | |
| parent | f3db693400328b2ddab70ddf6a811825b6a16489 (diff) | |
(김준회) ECC I/F 관련 작업
- ECC 인터페이스 수신테이블 notNull 조건 제거 (테스트 데이터 문제)
- 수신 라우트의 구조 불일치 문제 처리
Diffstat (limited to 'db/schema/projects.ts')
| -rw-r--r-- | db/schema/projects.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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(), }) |
