Difference between revisions of "Database Table: tempanonips"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Updating: Format, definition)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{Database Table|name=tempanonips|table type=clustered|need desc=1|repo=dw-free}}
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE tempanonips (
 
CREATE TABLE tempanonips (
Line 6: Line 6:
 
     ip          VARCHAR(15) NOT NULL,
 
     ip          VARCHAR(15) NOT NULL,
 
     journalid  INT(10) UNSIGNED NOT NULL,
 
     journalid  INT(10) UNSIGNED NOT NULL,
     jtalkid    MEDIUMINT(8) UNSIGNED NOT NULL,
+
     jtalkid    INT(10) UNSIGNED NOT NULL,
 +
 
 
     PRIMARY KEY (journalid, jtalkid),
 
     PRIMARY KEY (journalid, jtalkid),
 
     INDEX      (reporttime)
 
     INDEX      (reporttime)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Clustered database]]
+
 
+
[[Category: Database Tables|tempanonips]]
+

Latest revision as of 04:04, 8 June 2013

This is a clustered table.

Definition

CREATE TABLE tempanonips (
    reporttime  INT(10) UNSIGNED NOT NULL,
    ip          VARCHAR(15) NOT NULL,
    journalid   INT(10) UNSIGNED NOT NULL,
    jtalkid     INT(10) UNSIGNED NOT NULL,
 
    PRIMARY KEY (journalid, jtalkid),
    INDEX       (reporttime)
)

Relationships