X-Git-Url: http://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Ftutorials%2Fschema-annotations.sql;fp=src%2Fit%2Ftutorials%2Fschema-annotations.sql;h=8448e8a2c43b12f8c0dbbb15d9e8133955e5518c;hp=0000000000000000000000000000000000000000;hb=94e6b2e93fe107e75c9d20aa1eb3126e78a5ed0a;hpb=b3f8db2fdd9eddbaac002f94068dd1b4e6aef9a8 diff --git a/src/it/tutorials/schema-annotations.sql b/src/it/tutorials/schema-annotations.sql new file mode 100644 index 00000000..8448e8a2 --- /dev/null +++ b/src/it/tutorials/schema-annotations.sql @@ -0,0 +1,9 @@ + + drop table EVENTS if exists; + + create table EVENTS ( + id bigint not null, + EVENT_DATE timestamp, + title varchar(255), + primary key (id) + );