Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
project_ss23_gameunity
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Yusuf Akgül
project_ss23_gameunity
Merge requests
!3
Implement message schema
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implement message schema
implementMessageSchema
into
main
Overview
0
Commits
4
Pipelines
2
Changes
1
Merged
David
requested to merge
implementMessageSchema
into
main
1 year ago
Overview
0
Commits
4
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
3865d79e
Prev
Next
Show latest version
1 file
+
11
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
3865d79e
created schema
· 3865d79e
DESKTOP-9FO96TP\hehexd
authored
1 year ago
prisma/schema.prisma
+
11
−
1
Options
@@ -6,6 +6,16 @@ generator client {
}
datasource db {
provider = "
postgre
sql"
provider = "sql
ite
"
url = env("DATABASE_URL")
}
model Message{
id Int @id @default(autoincrement())
author String
gameId String
title String
content String
sentAt DateTime @default(now())
updatedAt DateTime? @updatedAt
}
\ No newline at end of file
Loading