~ubuntu-branches/ubuntu/wily/php-horde-cache/wily

« back to all changes in this revision

Viewing changes to Horde_Cache-2.2.0/data/cache.sql

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2013-08-10 19:53:57 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20130810195357-empm8uhqxxb7vk5n
Tags: 2.2.1-1
New upstream version 2.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE horde_cache (
2
 
    cache_id          VARCHAR(32) NOT NULL,
3
 
    cache_timestamp   BIGINT NOT NULL,
4
 
    cache_data        LONGBLOB,
5
 
 
6
 
    PRIMARY KEY  (cache_id)
7
 
);