diff options
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 a67b2c33..ee3dbf27 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: 매핑 필요 createdAt: timestamp("created_at").defaultNow().notNull(), updatedAt: timestamp("updated_at").defaultNow().notNull(), }) |
