Database Table: stats

From Dreamwidth Notes
Revision as of 15:58, 22 July 2010 by Exor674Bot (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is a global table.

Definition

CREATE TABLE stats (
    statcat VARCHAR(30) NOT NULL,
    statkey VARCHAR(150) NOT NULL,
    statval INT(10) UNSIGNED NOT NULL,
 
    UNIQUE KEY statcat_2 (statcat,statkey)
)

Relationships