Difference between revisions of "Database Table: password"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Changing Category:Database Tables)
m
Line 1: Line 1:
 +
{{#set:name=password|table type=global}}
 
= Definition =
 
= Definition =
  
Line 7: Line 8:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
Foreign key userid to [[Database Table: user|user]].userid
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category:Database Tables Needing Conversion|password]]
+

Revision as of 18:11, 5 October 2009

Definition

CREATE TABLE password (
   userid    INT UNSIGNED NOT NULL PRIMARY KEY,
   password  VARCHAR(50)
)

Relationships

Outgoing

  • Foreign key: userid to user.userid