Make WordPress Core

Ticket #5809: structure.txt

File structure.txt, 416 bytes (added by rmccue, 17 years ago)

Proposed new structure of tables (by klawd)

Line 
1- posts
2-- id
3-- title
4-- text
5 
6- wp_terms
7-- id
8-- name
9-- slug
10 
11- wp_term_taxonomy
12-- term_taxonomy_id
13-- term_id
14-- taxonomy
15 
16- wp_term_relationships
17-- object_id
18-- taxonomy_id
19
20VS.
21
22- posts
23-- id
24-- title
25-- text
26 
27- categories
28-- id
29-- name
30-- slug
31 
32- relation_cat_post
33-- cat_id
34-- post_id
35 
36- tags
37-- id
38-- name
39-- slug
40 
41- relation_tag_post
42-- tag_id
43-- post_id