Difference between revisions of "Database Table: supportpoints"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'supportpoints =Definition= <source lang="sql"> CREATE TABLE supportpoints ( spid int(10) unsigned NOT NULL default '0', userid int(10) unsigned N...')
 
Line 1: Line 1:
[[Category: Database Table|supportpoints]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE supportpoints (
 
CREATE TABLE supportpoints (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships=
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|supportpoints]]

Revision as of 10:18, 4 April 2009

Definition

CREATE TABLE supportpoints (
  spid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  points tinyint(3) UNSIGNED DEFAULT NULL,
  KEY (spid),
  KEY (userid)
)

Relationships

Location

Global database