Verifying generated SQL in integration-test hib-test
[hibernate4-maven-plugin] / src / it / hib-test / oracle.sql
1
2     drop table test_simple cascade constraints;
3
4     create table test_simple (
5         uuid varchar2(36 char) not null,
6         content clob,
7         externalid varchar2(148 char),
8         sources varchar2(255 char),
9         primary key (uuid)
10     );
11
12     create index idx_test_simple_tuple on test_simple (sources, uuid);