Show
Ignore:
Timestamp:
08/09/07 17:39:18 (17 months ago)
Author:
asterix
Message:

merge diff from trunk to pep branch

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/pep/src/common/check_paths.py

    r7754 r8478  
    4343        # jids.jid text column will be JID if TC-related, room_jid if GC-related, 
    4444        # ROOM_JID/nick if pm-related. 
     45        # also check optparser.py, which updates databases on gajim updates 
    4546        cur.executescript( 
    4647                ''' 
     
    7576                 
    7677                CREATE INDEX idx_logs_jid_id_kind ON logs (jid_id, kind); 
     78 
     79                CREATE TABLE caps_cache ( 
     80                        node TEXT, 
     81                        ver TEXT, 
     82                        ext TEXT, 
     83                        data BLOB); 
    7784                ''' 
    7885                )