When I used spring-boot-starter-data-jpa and I set spring.jpa.hibernate.ddl-auto:create and my entity like this
@Entity
public class BaseOnDoubleValue extends DoubleData {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = "uuid",length = 40)
private long uuid;
private int baseid;
then I got a eror like this
2015-11-19 11:07:02.438 ERROR 5876 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000389: Unsuccessful: create table base_on_double_value (uuid bigint generated by default as identity, baseid integer not null, date_time timestamp, error integer not null, id integer not null, quality smallint not null, base_value double, primary key (uuid))
2015-11-19 11:07:02.438 ERROR 5876 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : ORA-02000: missing ALWAYS keyword
Can you help me figure it?