Database Table: challenges

From Dreamwidth Notes
Jump to: navigation, search

This is a global table.

Definition

CREATE TABLE challenges (
    ctime INT(10) UNSIGNED NOT NULL DEFAULT 0,
    challenge CHAR(80) NOT NULL DEFAULT '',
 
    PRIMARY KEY (challenge)
)

Relationships