Difference between revisions of "Database Table: supportlog"

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

Revision as of 15:14, 31 March 2009

Definition

CREATE TABLE supportlog (
  splid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  spid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  timelogged INT(10) UNSIGNED NOT NULL DEFAULT '0',
  TYPE enum('req','custom','faqref') DEFAULT NULL,
  faqid mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  message text,
  PRIMARY KEY  (splid),
  KEY (spid)
)

Relationships

Location

Global database