Difference between revisions of "Public.categories (table)"
Line 9: | Line 9: | ||
+ | === Columns === | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
Line 15: | Line 16: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
− | | ''' | + | | '''Description |
− | |||
|- | |- | ||
Line 23: | Line 23: | ||
| not null | | not null | ||
| | | | ||
− | |||
| | | | ||
|- | |- | ||
Line 31: | Line 30: | ||
| | | | ||
| | | | ||
− | |||
|- | |- | ||
| categorydescription | | categorydescription | ||
| varchar(256) | | varchar(256) | ||
| null | | null | ||
− | |||
| | | | ||
| | | | ||
|} | |} | ||
+ | === Primary Key === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Primary Key | ||
+ | | '''Columns | ||
+ | |- | ||
+ | | category_pkey | ||
+ | | categoryid | ||
+ | |} | ||
+ | === Indexes === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Index | ||
+ | | '''Type | ||
+ | | '''Columns | ||
+ | |||
+ | |- | ||
+ | | category_idx | ||
+ | | Unique | ||
+ | | categoryname | ||
+ | |} | ||
+ | === Detail Tables === | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" |
Revision as of 08:31, 11 February 2010
wikibot
Table | public.categories |
Columns
Column | Data Type | Nullable | Default | Description |
categoryid | integer | not null | ||
categoryname | varchar(64) | not null | ||
categorydescription | varchar(256) | null |
Primary Key
Primary Key | Columns |
category_pkey | categoryid |
Indexes
Index | Type | Columns |
category_idx | Unique | categoryname |
Detail Tables
Detail Table | Column | Referencing Column |
public.category_node | categoryid | categoryid |