Difference between revisions of "Database Table: supportnotify"

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

Revision as of 10:19, 4 April 2009

Definition

CREATE TABLE supportnotify (
  spcatid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  level enum('all','new') DEFAULT NULL,
  KEY (spcatid),
  KEY (userid),
  PRIMARY KEY  (spcatid,userid)
)

Relationships

Location

Global database