Changeset 7f36551 in Git for src/main/java/com/wediscussmovies/project/model/Movie.java
- Timestamp:
- 02/06/22 22:56:26 (3 years ago)
- Branches:
- main
- Children:
- 3c0f9a9, ad4243e
- Parents:
- 42d565b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/wediscussmovies/project/model/Movie.java
r42d565b r7f36551 40 40 @OneToMany(mappedBy = "movie", fetch = FetchType.LAZY) 41 41 private Collection<MovieActors> actors; 42 @OneToMany(mappedBy = "movie" )42 @OneToMany(mappedBy = "movie", fetch = FetchType.LAZY) 43 43 private Collection<MovieGenres> genres; 44 44 @OneToMany(mappedBy = "movie")
Note:
See TracChangeset
for help on using the changeset viewer.