Index: deprecated.php
===================================================================
--- deprecated.php	(revision 12541)
+++ deprecated.php	(working copy)
@@ -15,6 +15,7 @@
 /**
  * The name of the Posts table
  * @global string $tableposts
+ * @deprecated 1.2.0
  * @deprecated Use $wpdb->posts
  */
 $tableposts = $wpdb->posts;
@@ -22,6 +23,7 @@
 /**
  * The name of the Users table
  * @global string $tableusers
+ * @deprecated 1.2.0
  * @deprecated Use $wpdb->users
  */
 $tableusers = $wpdb->users;
@@ -29,48 +31,58 @@
 /**
  * The name of the Categories table
  * @global string $tablecategories
- * @deprecated Use $wpdb->categories
+ * @deprecated 1.2.0
+ * @deprecated Not used anymore
+ * @link http://codex.wordpress.org/Database_Description
  */
-$tablecategories = $wpdb->categories;
+$tablecategories = 'categories_is_gone';
 
 /**
  * The name of the post to category table
  * @global string $tablepost2cat
- * @deprecated Use $wpdb->post2cat;
+ * @deprecated 1.2.0
+ * @deprecated Not used anymore
+ * @link http://codex.wordpress.org/Database_Description
  */
-$tablepost2cat = $wpdb->post2cat;
+$tablepost2cat = 'post2cat_is_gone';
 
 /**
  * The name of the comments table
  * @global string $tablecomments
- * @deprecated Use $wpdb->comments;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->comments
  */
 $tablecomments = $wpdb->comments;
 
 /**
  * The name of the links table
  * @global string $tablelinks
- * @deprecated Use $wpdb->links;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->links
  */
 $tablelinks = $wpdb->links;
 
 /**
  * @global string $tablelinkcategories
- * @deprecated Not used anymore;
+ * @deprecated 1.2.0
+ * @deprecated Not used anymore
+ * @link http://codex.wordpress.org/Database_Description
  */
 $tablelinkcategories = 'linkcategories_is_gone';
 
 /**
  * The name of the options table
  * @global string $tableoptions
- * @deprecated Use $wpdb->options;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->options
  */
 $tableoptions = $wpdb->options;
 
 /**
  * The name of the postmeta table
  * @global string $tablepostmeta
- * @deprecated Use $wpdb->postmeta;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->postmeta
  */
 $tablepostmeta = $wpdb->postmeta;