Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DRP_45
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
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
Show more breadcrumbs
Wakefield, Rob
DRP_45
Merge requests
!23
Fix typo in student dashboard page
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix typo in student dashboard page
master
into
production
Overview
0
Commits
17
Pipelines
1
Changes
8
Merged
Wakefield, Rob
requested to merge
master
into
production
1 year ago
Overview
0
Commits
17
Pipelines
1
Changes
8
Expand
0
0
Merge request reports
Compare
production
production (base)
and
latest version
latest version
6c1f2776
17 commits,
1 year ago
8 files
+
170
−
38
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
prisma/migrations/20230601114814_init/migration.sql
0 → 100644
+
8
−
0
Options
-- CreateTable
CREATE
TABLE
"Student"
(
"id"
SERIAL
NOT
NULL
,
"language"
TEXT
NOT
NULL
,
"maths"
TEXT
NOT
NULL
,
CONSTRAINT
"Student_pkey"
PRIMARY
KEY
(
"id"
)
);
Loading