task/3382: Harmonisera tabellnamn #6

Merged
ansv7779 merged 104 commits from task/3382 into develop 2024-11-12 13:33:44 +01:00
2 changed files with 10 additions and 4 deletions
Showing only changes of commit ae99973fe7 - Show all commits

View File

@ -13,13 +13,13 @@ public class ReviewerDeadlineSettings extends DomainObject {
@Id
private Long id = null;
@Basic(optional = false)
@Column(name = "rough_draft_approval", nullable = false)
private int roughDraftApproval = 5;
@Basic(optional = false)
@Column(name = "final_seminar_approval", nullable = false)
private int finalSeminarApproval = 2;
@Basic(optional = false)
@Column(name = "final_grading", nullable = false)
private int finalGrading = 5;
public ReviewerDeadlineSettings() {

View File

@ -385,4 +385,10 @@ rename table `NonWorkDayPeriod` to `non_work_day_period`;
-- table: urkund_settings
alter table `urkund_settings` rename column `username` to `user_name`;
alter table `urkund_settings` rename column `username` to `user_name`;
-- table: reviewer_deadline_settings
alter table `reviewer_deadline_settings` rename column `roughDraftApproval` to `rough_draft_approval`;
alter table `reviewer_deadline_settings` rename column `finalSeminarApproval` to `final_seminar_approval`;
alter table `reviewer_deadline_settings` rename column `finalGrading` to `final_grading`;