Make WordPress Core

Ticket #9422: 9422-ids-extra.diff

File 9422-ids-extra.diff, 1.1 KB (added by Denis-de-Bernardy, 16 years ago)

missed a few

  • Users/denis/Sites/wp/wp-admin/includes/schema.php

     
    6868  comment_approved varchar(20) NOT NULL default '1',
    6969  comment_agent varchar(255) NOT NULL default '',
    7070  comment_type varchar(20) NOT NULL default '',
    71   comment_parent bigint(20) NOT NULL default '0',
     71  comment_parent bigint(20) unsigned NOT NULL default '0',
    7272  user_id bigint(20) unsigned NOT NULL default '0',
    7373  PRIMARY KEY  (comment_ID),
    7474  KEY comment_approved (comment_approved),
     
    8585  link_category bigint(20) NOT NULL default '0',
    8686  link_description varchar(255) NOT NULL default '',
    8787  link_visible varchar(20) NOT NULL default 'Y',
    88   link_owner bigint(20) NOT NULL default '1',
     88  link_owner bigint(20) unsigned NOT NULL default '1',
    8989  link_rating int(11) NOT NULL default '0',
    9090  link_updated datetime NOT NULL default '0000-00-00 00:00:00',
    9191  link_rel varchar(255) NOT NULL default '',