Difference between revisions of "Database Table: userbio"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'userbio =Definition= <source lang="sql"> CREATE TABLE userbio ( userid int(10) unsigned NOT NULL default '0', bio text, PRIMARY KEY (userid) )...')
 
Line 1: Line 1:
[[Category: Database Table|userbio]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE userbio (
 
CREATE TABLE userbio (
Line 9: Line 9:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|userbio]]

Revision as of 10:33, 4 April 2009

Definition

CREATE TABLE userbio (
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  bio text,
  PRIMARY KEY  (userid)
)

Relationships

Location

Clustered database