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 を作成するにはどうすればよいですか?