Difference between revisions of "Database Table: invitesent"

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

Revision as of 11:54, 31 March 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

Location

Clustered database