task/3382: Harmonisera tabellnamn #6
@ -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() {
|
||||
|
@ -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`;
|
Loading…
x
Reference in New Issue
Block a user