在我的Entity类中,我想要更改字段的数据类型,但它在数据库中没有更新。我正在使用PostgreSQL。我还尝试添加了以下内容:
spring.jpa.hibernate.ddl-auto=update
在应用程序属性中,它仍然不起作用我不知道为什么,请帮助,谢谢。
我所拥有的:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id // change Integer into Long data type in the database
2条答案
按热度按时间ui7jx7zq1#
如果您刚刚创建了数据库,并且其中没有任何数据,您可以尝试
update
将只更新数据库行,不会更改PostgreSQL中的表。lkaoscv72#
尝试删除该表并运行该应用程序。