Difference between revisions of "Database Table: password"
From Dreamwidth Notes
(Created page with 'password =Definition= <source lang="sql"> CREATE TABLE password ( userid INT UNSIGNED NOT NULL PRIMARY KEY, password VARCHAR(50) ) </source...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = 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