set autocommit on;
create table sunwam_session (
blob_chunk varbinary(7800),
blob_size integer not null,
expiration_time double integer not null,
uuid varchar(256) not null,
sessionstate integer not null,
version integer not null default 1
);
create table sunwam_session_ext (
id varchar(100) not null,
blob_chunk_seq integer not null,
blob_chunk varbinary(7800),
expiration_time double integer not null,
);