Changes between Initial Version and Version 2 of Ticket #12392
- Timestamp:
- 10/28/2010 09:00:37 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12392
-
Property
Milestone
changed from
Awaiting Triage
toFuture Release
-
Property
Milestone
changed from
-
Ticket #12392 – Description
initial v2 1 1 Look at the comment table: 2 2 {{{ 3 3 CREATE TABLE $wpdb->comments ( 4 4 comment_ID bigint(20) unsigned NOT NULL auto_increment, … … 18 18 user_id bigint(20) unsigned NOT NULL default '0', 19 19 ... 20 20 }}} 21 21 A lot of that is not actually being used on many sites and could be moved to standard meta data, available on demand, but not pulled out by default. 22 22