Database Table: blockwatch_events

From Dreamwidth Notes
Revision as of 11:42, 7 September 2010 by Exor674 (Talk | contribs)

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

This is a global table.

Definition

CREATE TABLE blockwatch_events (
    id INT UNSIGNED NOT NULL AUTO_INCREMENT,
    name VARCHAR(255) NOT NULL,
 
    PRIMARY KEY (id),
    UNIQUE KEY (name)
)

Relationships