Hibernate 3.3.xでApache Derby 10.5.3.0_1とhbm2ddlを使用しています
組み込み derby データベースに SQL をプリロードしているときに、次の制約エラーが発生します。create table sqlから主キー(id)を削除すると、テーブルを作成できます。ここで何が問題なのかわかりません。
create table user_flow (id integer not null generated always as identity unique, creation_date timestamp not null, name varchar(255), primary key (id));
[INFO] Constraints 'SQL100219175052781' and 'SQL100219175052780' have the same set of columns, which is not allowed.