Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LabraCORE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
LabraCORE
Merge requests
!115
Regenerate liquibase table-setup to match ID gen
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Regenerate liquibase table-setup to match ID gen
fix-liquibase
into
development
Overview
0
Commits
1
Pipelines
6
Changes
3
Merged
Regenerate liquibase table-setup to match ID gen
Sára Juhošová
requested to merge
fix-liquibase
into
development
Jul 27, 2020
Overview
0
Commits
1
Pipelines
6
Changes
3
regenerate the db file to match the new strategy for generation (IDENTITY)
change application.yaml for DevLabracoreApplication to validate liquibase and catch such errors in the future
Edited
Jul 27, 2020
by
Sára Juhošová
0
0
Merge request reports
Compare
development
version 1
31480194
Jul 27, 2020
development (base)
and
latest version
latest version
d1dc5593
1 commit,
Jul 29, 2020
version 1
31480194
1 commit,
Jul 27, 2020
3 files
+
1852
−
1842
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
src/main/java/nl/tudelft/labracore/dto/create/GradeImportDTO.java
+
2
−
4
View file @ d1dc5593
Edit in single-file editor
Open in Web IDE
Show full file
@@ -21,10 +21,7 @@ import java.time.LocalDateTime;
import
javax.validation.constraints.NotNull
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
lombok.*
;
import
nl.tudelft.labracore.model.Grade
;
import
nl.tudelft.labracore.model.enums.GradeScheme
;
import
nl.tudelft.librador.dto.create.Create
;
@@ -35,6 +32,7 @@ import org.modelmapper.ModelMapper;
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
GradeImportDTO
extends
Create
<
Grade
>
{
@NotNull
Loading