Skip to content

Commit

Permalink
fix : remove settingDisability
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Jun 12, 2024
1 parent 0469b95 commit be22226
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/Journey/Together/domain/place/entity/Place.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ public class Place {
private String sigunguCode;


private Boolean settingDisability;


@OneToMany(mappedBy = "place", cascade = CascadeType.ALL, orphanRemoval = true)
private Set<DisabilityPlaceCategory> placeDisabilityCategories = new HashSet<>();

Expand All @@ -50,9 +47,6 @@ public void setOverview(String overview){
this.overview = overview;
}

public void setting(){
this.settingDisability = true;
}

@Builder
public Place(Long id, String name, String address, String firstImg, String category, Double mapX, Double mapY, String createdAt, String areaCode, String sigunguCode){
Expand Down

0 comments on commit be22226

Please sign in to comment.