summaryrefslogtreecommitdiff
path: root/db/schema/agreementComments.ts
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema/agreementComments.ts')
-rw-r--r--db/schema/agreementComments.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema/agreementComments.ts b/db/schema/agreementComments.ts
index 56631b1f..d7bbd2cb 100644
--- a/db/schema/agreementComments.ts
+++ b/db/schema/agreementComments.ts
@@ -38,6 +38,8 @@ export const agreementComments = pgTable('agreement_comments', {
// 상태 관리
isDeleted: boolean('is_deleted').notNull().default(false),
+ isSubmitted: boolean('is_submitted').notNull().default(false), // 제출 여부
+ submittedAt: timestamp('submitted_at'), // 제출 일시
// 감사 정보
createdAt: timestamp('created_at').defaultNow().notNull(),