如果在域类中声明了它,hibernate是否可以在数据库中创建一个具有默认值的列?
我需要在数据库中为表中的所有记录(超过 500 万行)添加一个具有 false 值的列。我已经在域类中声明了该列:boolean isLocked
,但是当应用程序启动时,我收到此异常:Caused by: org.postgresql.util.PSQLException: ERROR: column isLocked不存在
。
我想知道是否可以让 hibernate 使用默认值(布尔值为 false)仅创建此列一次。
我使用的是grails 3.3.9版本。
I need do add a column in the database with false value for all the records in a table(more than 5 millions rows). I've declared the column in the domain class :boolean isLocked
, but when the application starts, I receive this exception: Caused by: org.postgresql.util.PSQLException: ERROR: column isLocked does not exist
.
I want to know if I can make hibernate create this column only once with the default value (false for boolean).
I am using grails 3.3.9 version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终所做的是手动在数据库中创建列,因此当启动应用程序时,它将看到该列存在于数据库中。
What I've done eventually was to create the column in the database by hand, so when starting the app, it will see that the column exists in the db.