Difference between revisions of "Database Table: support answers"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'support_answers =Definition= <source lang="sql"> CREATE TABLE support_answers ( ansid INT UNSIGNED NOT NULL, spcatid INT UNSIGNED NOT NULL, ...')
 
Line 1: Line 1:
[[Category: Database Table|support_answers]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE support_answers (
 
CREATE TABLE support_answers (
Line 15: Line 15:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|support_answers]]

Revision as of 15:18, 31 March 2009

Definition

CREATE TABLE support_answers (
    ansid INT UNSIGNED NOT NULL,
    spcatid INT UNSIGNED NOT NULL,
    lastmodtime INT UNSIGNED NOT NULL,
    lastmoduserid INT UNSIGNED NOT NULL,
    subject VARCHAR(255),
    body TEXT,
 
    PRIMARY KEY (ansid),
    KEY         (spcatid)
)

Relationships

Location

Global database