Database Table: useridmap

From Dreamwidth Notes
Jump to: navigation, search

This is a global table.

Definition

CREATE TABLE useridmap (
    userid INT(10) UNSIGNED NOT NULL,
    USER CHAR(25) NOT NULL,
 
    PRIMARY KEY  (userid),
    UNIQUE KEY USER (USER)
)

Relationships