Make WordPress Core


Ignore:
Timestamp:
09/15/2013 11:11:30 PM (12 years ago)
Author:
nacin
Message:

Multisite blogs table: Convert the archived field from enum to tinyint to match the other status fields. fixes #12832.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/schema.php

    r25416 r25448  
    231231  last_updated datetime NOT NULL default '0000-00-00 00:00:00',
    232232  public tinyint(2) NOT NULL default '1',
    233   archived enum('0','1') NOT NULL default '0',
     233  archived tinyint(2) NOT NULL default '0',
    234234  mature tinyint(2) NOT NULL default '0',
    235235  spam tinyint(2) NOT NULL default '0',
Note: See TracChangeset for help on using the changeset viewer.