Sign in
third-party-mirror
/
glassfish
/
f4dc06aafef4b1fc8c27862a2229ae83c69d8b7a
/
.
/
appserver
/
tests
/
v2-tests
/
appserv-tests
/
devtests
/
cmp
/
sampleapp
/
sql
/
SampleWebApp.sql
blob: cb3814bdf3fdb750e5fddc9789529a12498c2fc3 [
file
] [
log
] [
blame
]
DROP
TABLE
CompositeIntStringBeanTable
;
CREATE
TABLE
CompositeIntStringBeanTable
(
id INTEGER
,
name VARCHAR
(
255
)
,
salary
DOUBLE
PRECISION
NOT
NULL
,
CONSTRAINT
pk_CompositeIntStringBeanTabl
PRIMARY
KEY
(
id
,
name
)
);
commit
;