Difference between revisions of "Database Table: invitesent"
From Dreamwidth Notes
(Created page with 'invitesent =Definition= <source lang="sql"> CREATE TABLE invitesent ( commid INT(10) UNSIGNED NOT NULL, userid INT(10) UNSIGNED NOT...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE invitesent ( | CREATE TABLE invitesent ( | ||
Line 13: | Line 13: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )