Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个曾经不是 null="true" 的属性。该字段不再需要值,因此我将其更改为 not-null="false" 但表未在数据库中更新。添加新属性不会带来任何问题。
hbm2ddl.auto=update 是否可以自动更改表以删除 not-null="true"?(我知道我可以编写一个 sql 脚本来更改它,但想让它自动更新)
据我所知: hbm2ddl.auto=update 不会更改已包含数据的表的非空值。
最后我只是写了一个sql脚本来更改表。