Changeset 1530

Show
Ignore:
Timestamp:
12/14/2007 10:27:12 AM (10 months ago)
Author:
Shadowhand
Message:

Made the id into the primary key for sqlite cache table creation.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/config/cache_sqlite.php

    r1522 r1530  
    33$config['schema'] = 
    44'CREATE TABLE caches( 
    5         id varchar(127), 
    6         hash char(40), 
     5        id varchar(127) PRIMARY KEY, 
     6        hash char(40) NOT NULL, 
    77        tags varchar(255), 
    88        expiration int,