Skip to content

Commit 069ef25

Browse files
authored
Refactor table and column names to camelCase
Updated table and column names to use camelCase.
1 parent 6d45fcc commit 069ef25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/gridsuite/modification/server/entities/equipment/creation/CurrentLimitsEntity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@
2525
@NoArgsConstructor
2626
@AllArgsConstructor
2727
@Entity
28-
@Table(name = "current_limits")
28+
@Table(name = "currentLimits")
2929
public class CurrentLimitsEntity {
3030

3131
@Id
3232
@GeneratedValue(strategy = GenerationType.AUTO)
3333
@Column(name = "id")
3434
private UUID id;
3535

36-
@Column(name = "permanent_limit")
36+
@Column(name = "permanentLimit")
3737
private Double permanentLimit;
3838

3939
@ElementCollection
4040
@CollectionTable(
41-
name = "current_temporary_limits",
41+
name = "currentTemporaryLimits",
4242
joinColumns = @JoinColumn(name = "id", foreignKey = @ForeignKey(name = "temporaryLimits_fk_constraint"))
4343
)
4444
private List<CurrentTemporaryLimitCreationEmbeddable> temporaryLimits;

0 commit comments

Comments
 (0)