mysql is @ Column (name = "name", columnDefinition = "varchar (100) comment "comment")
what does postgresql do?
mysql is @ Column (name = "name", columnDefinition = "varchar (100) comment "comment")
what does postgresql do?
you can annotate the table in the following way
import javax.persistence.Column;
import javax.persistence.Table;
@Table
@org.hibernate.annotations.Table(appliesTo = "t_source", comment = "")
public class Source {
...
}
annotate the Column of postgresql. I suggest you give up this idea.
.Previous: Multi-page jump, vue life cycle beforeDestroy, destroyed will not be triggered?
Next: How to configure highly concurrent servers with tornado