Make WordPress Core

Changeset 1609 for trunk


Ignore:
Timestamp:
09/05/2004 07:44:58 AM (21 years ago)
Author:
saxmatt
Message:

Friendlier comment schema.

File:
1 edited

Legend:

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

    r1602 r1609  
    2323  comment_content text NOT NULL,
    2424  comment_karma int(11) NOT NULL default '0',
    25   comment_approved enum('0','1') NOT NULL default '1',
     25  comment_approved tinyint(1) NOT NULL default '1',
    2626  comment_agent varchar(255) NOT NULL default '',
     27  comment_type varchar(20) NOT NULL default '',
     28  comment_parent int(11) NOT NULL default '0',
    2729  user_id int(11) NOT NULL default '0',
    2830  PRIMARY KEY  (comment_ID),
Note: See TracChangeset for help on using the changeset viewer.