Advertisement
Guest User

dbaf_wp_term_relationships

a guest
Nov 9th, 2011
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. /*
  2.  
  3. Source Server : localhost
  4. Source Server Type : MySQL
  5. Source Server Version : 50144
  6. Source Host : localhost
  7. Source Database : wp
  8.  
  9. Target Server Type : MySQL
  10. Target Server Version : 50144
  11. File Encoding : utf-8
  12.  
  13. Date: 11/09/2011 11:34:47 AM
  14. */
  15.  
  16. SET NAMES utf8;
  17. SET FOREIGN_KEY_CHECKS = 0;
  18.  
  19. -- ----------------------------
  20. -- Table structure for `wp_term_relationships`
  21. -- ----------------------------
  22. DROP TABLE IF EXISTS `wp_term_relationships`;
  23. CREATE TABLE `wp_term_relationships` (
  24. `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  25. `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  26. `term_order` int(11) NOT NULL DEFAULT '0',
  27. PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  28. KEY `term_taxonomy_id` (`term_taxonomy_id`)
  29. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  30.  
  31. -- ----------------------------
  32. -- Records of `wp_term_relationships`
  33. -- ----------------------------
  34. BEGIN;
  35. INSERT INTO `wp_term_relationships` VALUES ('1', '2', '0'), ('2', '2', '0'), ('3', '2', '0'), ('4', '2', '0'), ('5', '2', '0'), ('6', '2', '0'), ('7', '2', '0'), ('27', '6', '0'), ('5', '3', '0'), ('7', '3', '0'), ('9', '3', '0'), ('11', '3', '0'), ('13', '3', '0'), ('15', '4', '0'), ('17', '4', '0'), ('19', '4', '0'), ('21', '4', '0'), ('23', '4', '0'), ('25', '5', '0'), ('28', '6', '0'), ('29', '6', '0'), ('30', '6', '0');
  36. COMMIT;
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement