Skip to content

Commit

Permalink
Compile server: PR#77
Browse files Browse the repository at this point in the history
  • Loading branch information
Berygna committed Jun 23, 2024
1 parent 7956490 commit 887c996
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion algofi-compile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
runtimeOnly 'com.mysql:mysql-connector-j'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class AlgorithmProblem {

@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "ALGORITHM_PROBLEM_ID")
@Column(name = "ALGORITHMPROBLEM_ID")
private Long id;

private String title;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public class TestCase {
private String testOutput;

@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "algorithm_problem_id")
@JoinColumn(name = "algorithmproblem_id")
private AlgorithmProblem algorithmProblem;
}

0 comments on commit 887c996

Please sign in to comment.