我在 play 2.0 下创建了一个 bean,evolutions 将为我创建一个 1.sql DDL。
这是包含 blob 类型的实体:
@Entity
@Table(name="image_info")
public class ImageInfo extends Model {
.......
@Constraints.Required
private Blob image;
.......
}
它创建了这个 DDL。
create table image_info (
id bigint not null,
image blob)
它在本地适用于 H2 db,但不适用于 Heroku Postgres。我怎样才能使进化自动化以创建单独的 DDL?