Ignore:
Timestamp:
May 15, 2006, 11:43:20 PM (19 years ago)
Author:
plg
Message:

bug 365 fixed: categories.rank was limited to 255 due to storage
limitation. Maximum is 65535 now (should be good for a long time).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/install/upgrade_1.5.0.php

    r1209 r1311  
    301301  ADD COLUMN enabled_high enum('true','false') NOT NULL default 'true'
    302302;",
    303 
     303  "
     304ALTER TABLE ".PREFIX_TABLE."categories
     305  CHANGE COLUMN rank rank SMALLINT(5) UNSIGNED DEFAULT NULL
     306;",
    304307  // configuration table
    305308  "
Note: See TracChangeset for help on using the changeset viewer.