Difference between revisions of "Database Table: userprop"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'userprop =Definition= <source lang="sql"> CREATE TABLE userprop ( userid int(10) unsigned NOT NULL default '0', upropid smallint(5) unsigned NOT ...')
 
Line 1: Line 1:
[[Category: Database Table|userprop]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE userprop (
 
CREATE TABLE userprop (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|userprop]]

Revision as of 16:17, 31 March 2009

Definition

CREATE TABLE userprop (
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  upropid SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
  VALUE VARCHAR(60) DEFAULT NULL,
  PRIMARY KEY  (userid,upropid),
  KEY (upropid,VALUE)
)

Relationships

Location

Global database