Make WordPress Core

Ticket #3729: schema-php.diff

File schema-php.diff, 590 bytes (added by jhodgdon, 18 years ago)

Patch compatible with 2.3 bleeding

  • E:/EclipseWork/WordPressDev/wp-admin/includes/schema.php

     
    1212
    1313$wp_queries="CREATE TABLE $wpdb->terms (
    1414 term_id bigint(20) NOT NULL auto_increment,
    15  name varchar(55) NOT NULL default '',
     15 name varchar(200) NOT NULL default '',
    1616 slug varchar(200) NOT NULL default '',
    1717 term_group bigint(10) NOT NULL default 0,
    1818 PRIMARY KEY  (term_id),