feat: add mime type field to files

This commit is contained in:
2025-09-14 18:49:28 +00:00
parent 67383c1c4e
commit bcde0532fc
4 changed files with 10 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ const schema = defineSchema({
directoryId: v.optional(v.id("directories")),
name: v.string(),
size: v.number(),
mimeType: v.optional(v.string()),
createdAt: v.string(),
updatedAt: v.string(),
deletedAt: v.optional(v.string()),