Difference between revisions of "Database Table: faq"

From Dreamwidth Notes
Jump to: navigation, search
m (reformat, right category)
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=faq|clustered=false}}
 
= Definition =
 
= Definition =
  
Line 14: Line 15:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|faq]]
+

Revision as of 13:14, 2 October 2009

Definition

CREATE TABLE faq (
  faqid mediumint(8) UNSIGNED NOT NULL AUTO_INCREMENT,
  question text,
  answer text,
  sortorder INT(11) DEFAULT NULL,
  faqcat VARCHAR(20) DEFAULT NULL,
  lastmodtime datetime DEFAULT NULL,
  lastmoduserid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  PRIMARY KEY  (faqid)
)

Relationships