Difference between revisions of "Database Table: openid claims"

From Dreamwidth Notes
Jump to: navigation, search
m (Create page for new table openid_claims)
 
(No difference)

Latest revision as of 23:08, 28 November 2012

This is a global table.

Definition

CREATE TABLE openid_claims (
    userid          INT UNSIGNED NOT NULL,
    claimed_userid  INT UNSIGNED NOT NULL,
 
    PRIMARY KEY (userid),
    INDEX (claimed_userid)
)

Relationships