Database Table: blockwatch_events

From Dreamwidth Notes
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