43c3d58178cf1273bec921c5287e3823147bea8c
[hibernate4-maven-plugin] / src / it / hib-test / postgres.sql
1
2     drop table if exists test_simple cascade;
3
4     create table test_simple (
5         uuid varchar(36) not null,
6         content text,
7         created timestamp,
8         externalid varchar(148),
9         sources varchar(255),
10         primary key (uuid)
11     );
12
13     create index idx_test_simple_tuple on test_simple (sources, uuid);