Difference between revisions of "Database Table: uniqmap"
From Dreamwidth Notes
(Created page with 'uniqmap =Definition= <source lang="sql"> CREATE TABLE uniqmap ( uniq VARCHAR(15) NOT NULL, userid INT UNSIGNED NOT NULL, modtime INT UNSIGNED N...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE uniqmap ( | CREATE TABLE uniqmap ( | ||
Line 12: | Line 12: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|uniqmap]] |
Revision as of 10:29, 4 April 2009
Definition
CREATE TABLE uniqmap ( uniq VARCHAR(15) NOT NULL, userid INT UNSIGNED NOT NULL, modtime INT UNSIGNED NOT NULL, PRIMARY KEY (userid, uniq), INDEX(userid, modtime), INDEX(uniq, modtime) )