Difference between revisions of "Database Table: community"

From Dreamwidth Notes
Jump to: navigation, search
m (Lol..)
(Robot: Updating: Format)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{#set:name=community|Table type=global}}
+
{{Database Table|name=community|table type=global|repo=dw-free}}
 
[[Description::This stores information about communities. UserID points to the user record for the community itself, and ownerid points the user who owns the community.]]
 
[[Description::This stores information about communities. UserID points to the user record for the community itself, and ownerid points the user who owns the community.]]
 
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE community (
 
CREATE TABLE community (
  userid int(10) unsigned NOT NULL default '0',
+
    userid int(10) unsigned NOT NULL default '0',
  ownerid int(10) unsigned NOT NULL default '0',
+
    ownerid int(10) unsigned NOT NULL default '0',
  membership enum('open','closed') NOT NULL default 'open',
+
    membership enum('open','closed') NOT NULL default 'open',
  postlevel enum('members','select','screened') default NULL,
+
    postlevel enum('members','select','screened') default NULL,
  PRIMARY KEY  (userid)
+
 
 +
    PRIMARY KEY  (userid)
 
)
 
)
 
</source>
 
</source>
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 15:55, 22 July 2010

This is a global table. This stores information about communities. UserID points to the user record for the community itself, and ownerid points the user who owns the community.

Definition

CREATE TABLE community (
    userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    ownerid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    membership enum('open','closed') NOT NULL DEFAULT 'open',
    postlevel enum('members','select','screened') DEFAULT NULL,
 
    PRIMARY KEY  (userid)
)

Relationships

Outgoing

  • Foreign key: ownerid to user.userid
  • Foreign key: userid to user.userid