X-Git-Url: https://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Ftutorials-5.0.12%2Fschema-osgi-unmanaged-jpa.sql;fp=src%2Fit%2Ftutorials-5.0.12%2Fschema-osgi-unmanaged-jpa.sql;h=de92e4634759a32512133d094a60d40c97d06a26;hp=0000000000000000000000000000000000000000;hb=d7c7a224ec7fcd450ffb9a99eecfaefcb1a38ef1;hpb=fe9c99046f93cbc5a14d7b5314dc1c5c06ae2b80 diff --git a/src/it/tutorials-5.0.12/schema-osgi-unmanaged-jpa.sql b/src/it/tutorials-5.0.12/schema-osgi-unmanaged-jpa.sql new file mode 100644 index 00000000..de92e463 --- /dev/null +++ b/src/it/tutorials-5.0.12/schema-osgi-unmanaged-jpa.sql @@ -0,0 +1,7 @@ +create sequence hibernate_sequence start with 1 increment by 1; + + create table DataPoint ( + id bigint not null, + name varchar(255), + primary key (id) + );