projects
/
hibernate-maven-plugin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Reworked configuration and the tracking thereof
[hibernate-maven-plugin]
/
src
/
it
/
hib-test
/
oracle.sql
1
2
create table test_simple (
3
uuid varchar2(36 char) not null,
4
content clob,
5
created timestamp,
6
externalid varchar2(148 char),
7
sources varchar2(255 char),
8
primary key (uuid)
9
);
10
11
create index idx_test_simple_tuple on test_simple (sources, uuid);