Ignore:
Timestamp:
07/01/10 09:20:47 (3 years ago)
Author:
nick_ramsay
Message:

[Branch 1.4] Dropped token_id column because it's unused and would exceed the 11 digit int length eventually. Besides, token_key is unique anyway. Also added BASE to JavascriptConstants.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.4/install/install-upgrade.php

    r2006 r2011  
    697697                    $h->db->query($h->db->prepare($sql)); 
    698698            } 
     699             
     700            // Drop token_id column from the tokens table 
     701            if ($h->db->column_exists('tokens', 'token_id')) { 
     702                    $h->db->query("ALTER TABLE " . DB_PREFIX . "tokens DROP token_id"); 
     703            } 
    699704 
    700705        } 
Note: See TracChangeset for help on using the changeset viewer.