Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions contributors/agents.json
Original file line number Diff line number Diff line change
@@ -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
}
3 changes: 3 additions & 0 deletions packages/db/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading