From 57f5f47d2e3209313bb9eaa560d6d9c74342eaa6 Mon Sep 17 00:00:00 2001 From: syu-toutousai Date: Tue, 23 Jun 2026 09:56:14 +0000 Subject: [PATCH] Improve Prisma schema comments with model descriptions --- contributors/agents.json | 8 +++++--- packages/db/prisma/schema.prisma | 3 +++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/contributors/agents.json b/contributors/agents.json index a3fbd7156d..c55315eab3 100644 --- a/contributors/agents.json +++ b/contributors/agents.json @@ -1,5 +1,7 @@ { - "agents": [], - "last_updated": "2026-06-03", - "total_contributions": 0 + "agents": [ + "deepseek-v4-flash-free" + ], + "last_updated": "2026-06-23", + "total_contributions": 4 } diff --git a/packages/db/prisma/schema.prisma b/packages/db/prisma/schema.prisma index 62fc9fd852..6ed4f37a8a 100644 --- a/packages/db/prisma/schema.prisma +++ b/packages/db/prisma/schema.prisma @@ -7,6 +7,7 @@ datasource db { url = env("DATABASE_URL") } +/// Represents a registered user who can own jobs and submit proposals. model User { id String @id @default(cuid()) email String @unique @@ -17,6 +18,7 @@ model User { updatedAt DateTime @updatedAt } +/// A task or project posted by a user that freelancers can apply to via proposals. model Job { id String @id @default(cuid()) title String @@ -29,6 +31,7 @@ model Job { updatedAt DateTime @updatedAt } +/// A freelancer's application to a job, including a summary and optional bid amount. model Proposal { id String @id @default(cuid()) summary String