Difference between revisions of "Database Table: challenges"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'challenges =Definition= <source lang="sql"> CREATE TABLE challenges ( ctime int(10) unsigned NOT NULL DEFAULT 0, challenge char(80) NOT NULL ...')
 
m
Line 1: Line 1:
[[Category: Database Table|challenges]]
+
 
=Definition=
+
= Definition =
 +
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE challenges (
 
CREATE TABLE challenges (
Line 9: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
  
 
=Location=
 
=Location=
 +
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|challenges]]

Revision as of 23:47, 26 March 2009

Definition

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

Relationships

Location

Global database