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