source: companies/serpro/phpgwapi/inc/adodb/session/adodb-sessions.oracle.sql @ 903

Revision 903, 313 bytes checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1-- $CVSHeader$
2
3DROP TABLE adodb_sessions;
4
5CREATE TABLE sessions (
6        sesskey         CHAR(32)        DEFAULT '' NOT NULL,
7        expiry          INT             DEFAULT 0 NOT NULL,
8        expireref       VARCHAR(64)     DEFAULT '',
9        data            VARCHAR(4000)   DEFAULT '',
10        PRIMARY KEY     (sesskey),
11        INDEX expiry (expiry)
12);
13
14CREATE INDEX ix_expiry ON sessions (expiry);
15
16QUIT;
Note: See TracBrowser for help on using the repository browser.