Liquibase 初学者:建立双向 ManyToMany 关联
我正在使用带有 JPA 注释的 Hibernate。我有一个单向的多对多关联,我打算将其设为双向。
数据库已经包含一些数据。我正在考虑使用 Liquibase 来更新表。有人可以给我一些关于我必须编写的变更日志类型的见解吗?
I am using Hibernate with JPA annotations. I have a one-directional many-to-many association that I intend to make bi-directional.
The database already contains some data. I'm thinking of using Liquibase to do the tables' update. Can someone give me some insight as to the type of changelog I have to write?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将单向多对多关系转换为双向关系不需要任何数据库架构更改。您只需要更改您的类及其映射。
Converting unidirectional many-to-many relationship to bidirectional doesn't require any database schema changes. You only need to change your classes and their mapping.