875da31e6d117fd6de139657713f33542db1f91d
[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         externalid varchar(148),
8         sources varchar(255),
9         primary key (uuid)
10     );
11
12     create index idx_test_simple_tuple on test_simple (sources, uuid);