projects
/
hibernate-maven-plugin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
WIP:site
[hibernate-maven-plugin]
/
hib-test
/
postgres.sql
1
2
create table test_simple (
3
uuid varchar(36) not null,
4
content text,
5
created timestamp,
6
externalid varchar(148),
7
sources varchar(255),
8
primary key (uuid)
9
);
10
create index idx_test_simple_tuple on test_simple (sources, uuid);