summaryrefslogtreecommitdiff
path: root/db/schema/fileSystem.ts
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema/fileSystem.ts')
-rw-r--r--db/schema/fileSystem.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema/fileSystem.ts b/db/schema/fileSystem.ts
index a66e3180..0ce47c87 100644
--- a/db/schema/fileSystem.ts
+++ b/db/schema/fileSystem.ts
@@ -67,8 +67,8 @@ export const fileItems = pgTable("file_items", {
// 파일 정보
mimeType: varchar("mime_type", { length: 255 }),
size: bigint("size", { mode: "number" }).default(0).notNull(),
- filePath: text("file_path"), // S3 키 또는 로컬 경로
- fileUrl: text("file_url"), // 직접 접근 URL (CDN 등)
+ filePath: text("file_path"),
+ fileUrl: text("file_url"),
// 권한 카테고리 (외부 사용자용)
category: fileCategoryEnum("category").default("confidential").notNull(),