Difference between revisions of "Database Table: inviterecv"

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

Revision as of 16:21, 31 March 2009

Definition

CREATE TABLE inviterecv (
    userid      INT(10) UNSIGNED NOT NULL,
    commid      INT(10) UNSIGNED NOT NULL,
    maintid     INT(10) UNSIGNED NOT NULL,
    recvtime    INT(10) UNSIGNED NOT NULL,
    args        VARCHAR(255),
    PRIMARY KEY (userid, commid)
)

Relationships

Location

Clustered database