X-Git-Url: http://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Fhmp-testclasses-annotationscanning%2Fcreate-schema.ddl;fp=src%2Fit%2Fhmp-testclasses-annotationscanning%2Fcreate-schema.ddl;h=88001a6ef5dbec2539ffee11e86525762f54ebc9;hp=0000000000000000000000000000000000000000;hb=7104f9bf07991ab3a83717d2e699db6686f8fcb0;hpb=47e10a3fc8b38773e46a6526f84059a9f59a22db diff --git a/src/it/hmp-testclasses-annotationscanning/create-schema.ddl b/src/it/hmp-testclasses-annotationscanning/create-schema.ddl new file mode 100644 index 00000000..88001a6e --- /dev/null +++ b/src/it/hmp-testclasses-annotationscanning/create-schema.ddl @@ -0,0 +1,23 @@ +create sequence HMP_SEQ start with 1 increment by 1; + + create table HMP_FACHGEBIET ( + ID bigint not null, + GEAENDERT_AM timestamp, + GEAENDERT_VON varchar(255), + ERSTELLT_AM timestamp, + ERSTELLT_VON varchar(255), + CODE varchar(255) not null, + NAME varchar(255) not null, + VERSION bigint, + primary key (ID) + ); + + create table HMP_UCI_TEST_ENTITY ( + ID bigint not null, + GEAENDERT_AM timestamp, + GEAENDERT_VON varchar(255), + ERSTELLT_AM timestamp, + ERSTELLT_VON varchar(255), + NAME varchar(255) not null, + primary key (ID) + );