Difference between revisions of "Database Table: supportcat"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'supportcat =Definition= <source lang="sql"> CREATE TABLE supportcat ( spcatid int(10) unsigned NOT NULL auto_increment, catname varchar(80) defau...')
 
Line 1: Line 1:
[[Category: Database Table|supportcat]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE supportcat (
 
CREATE TABLE supportcat (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|supportcat]]

Revision as of 22:17, 30 March 2009

Definition

CREATE TABLE supportcat (
  spcatid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  catname VARCHAR(80) DEFAULT NULL,
  sortorder mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  basepoints tinyint(3) UNSIGNED NOT NULL DEFAULT '1',
  PRIMARY KEY  (spcatid)
)

Relationships

Location

Global database