diff --git a/backend/db/schema/files.ts b/backend/db/schema/files.ts index a151421..cbf596e 100644 --- a/backend/db/schema/files.ts +++ b/backend/db/schema/files.ts @@ -73,6 +73,7 @@ export const files = pgTable("files", { createdBy: uuid("created_by").references(() => authUsers.id), authProfile: uuid("auth_profile").references(() => authProfiles.id), + size: bigint("size", { mode: "number" }), }) export type File = typeof files.$inferSelect