Difference between revisions of "Database Table: invitesent"

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

Revision as of 13:15, 2 October 2009

Definition

CREATE TABLE invitesent (
    commid      INT(10) UNSIGNED NOT NULL,
    userid      INT(10) UNSIGNED NOT NULL,
    maintid     INT(10) UNSIGNED NOT NULL,
    recvtime    INT(10) UNSIGNED NOT NULL,
    STATUS      ENUM('accepted', 'rejected', 'outstanding') NOT NULL,
    args        VARCHAR(255),
    PRIMARY KEY (commid, userid)
)

Relationships