Plugin Directory

Changeset 429285


Ignore:
Timestamp:
08/27/2011 12:36:48 AM (15 years ago)
Author:
hawk__
Message:

Added some column types conversion for WPMU support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postgresql-for-wordpress/trunk/pg4wp/driver_pgsql_install.php

    r429284 r429285  
    2626        // WP 2.7.1 compatibility
    2727        'int(4)'        => 'smallint',
     28       
     29        // For WPMU (starting with WP 3.2)
     30        'tinyint(2)'    => 'smallint',
     31        'tinyint(1)'    => 'smallint',
     32        "enum('0','1')" => 'smallint',
     33       
    2834    );
    2935   
Note: See TracChangeset for help on using the changeset viewer.