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...')
(No difference)

Revision as of 18:06, 22 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