Difference between revisions of "Database Table: faq"
From Dreamwidth Notes
(Created page with 'faq =Definition= <source lang="sql"> CREATE TABLE faq ( faqid mediumint(8) unsigned NOT NULL auto_increment, question text, answer text, sort...') |
Foxfirefey (Talk | contribs) m (reformat, right category) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE faq ( | CREATE TABLE faq ( | ||
Line 14: | Line 14: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|faq]] |
Revision as of 20:57, 26 March 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) )