repo.or.cz
/
openemr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Separate Display and Search of Organization, and person names
[openemr.git]
/
library
/
adodb
/
session
/
adodb-sessions.oracle.clob.sql
blob
c5c4f2d0700ad1347fa79b78478c68e3f4972da2
1
-- $CVSHeader$
2
3
DROP TABLE adodb_sessions;
4
5
CREATE TABLE sessions (
6
sesskey CHAR(32) DEFAULT '' NOT NULL,
7
expiry INT DEFAULT 0 NOT NULL,
8
expireref VARCHAR(64) DEFAULT '',
9
data CLOB DEFAULT '',
10
PRIMARY KEY (sesskey)
11
);
12
13
CREATE INDEX ix_expiry ON sessions (expiry);
14
15
QUIT;