Difference between revisions of "Database Table: password"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'password =Definition= <source lang="sql"> CREATE TABLE password ( userid INT UNSIGNED NOT NULL PRIMARY KEY, password VARCHAR(50) ) </source...')
 
Line 1: Line 1:
[[Category: Database Table|password]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE password (
 
CREATE TABLE password (
Line 8: Line 8:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 
Foreign key userid to [[Database Table: user|user]].userid
 
Foreign key userid to [[Database Table: user|user]].userid
  
=Location=
+
= Location =
 +
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|password]]

Revision as of 14:10, 1 April 2009

Definition

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

Relationships

Foreign key userid to user.userid

Location

Global database