i'm trying to set default value for column and i have tried with below code in entity
@Column(columnDefinition = "integer default 1")
private Integer views;
now after running server still i could see views as null in sql. Any idea why not able to save default value.
Application.yml
hibernate:
ddl-auto: create
its always create as still its in development stage