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...')
(No difference)

Revision as of 17:37, 22 March 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