source: companies/celepar/phpgwapi/inc/adodb/session/adodb-sessions.oracle.sql @ 763

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

Importação inicial do Expresso da Celepar

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.