~ubuntu-branches/ubuntu/saucy/horde3/saucy

« back to all changes in this revision

Viewing changes to scripts/sql/horde_sessionhandler.sql

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2005-05-04 23:08:08 UTC
  • Revision ID: james.westby@ubuntu.com-20050504230808-p4hf3hk28o3v7wir
Tags: upstream-3.0.4
ImportĀ upstreamĀ versionĀ 3.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- $Horde: horde/scripts/sql/horde_sessionhandler.sql,v 1.1 2004/09/18 17:20:59 chuck Exp $
 
2
 
 
3
CREATE TABLE horde_sessionhandler (
 
4
    session_id             VARCHAR(32) NOT NULL,
 
5
    session_lastmodified   INT NOT NULL,
 
6
    session_data           LONGBLOB,
 
7
-- Or, on some DBMS systems:
 
8
--  session_data           IMAGE,
 
9
 
 
10
    PRIMARY KEY (session_id)
 
11
);
 
12
 
 
13
GRANT SELECT, INSERT, UPDATE, DELETE ON horde_sessionhandler TO horde;