Difference between revisions of "Database Table: loginlog"

From Dreamwidth Notes
Jump to: navigation, search
m
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=loginlog|clustered=true}}
 
= Definition =
 
= Definition =
  
Line 12: Line 13:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Clustered database]]
+
 
+
[[Category: Database Tables|loginlog]]
+

Revision as of 13:15, 2 October 2009

Definition

CREATE TABLE loginlog (
   userid    INT UNSIGNED NOT NULL,
   logintime INT UNSIGNED NOT NULL,
   INDEX     (userid, logintime),
   sessid    MEDIUMINT UNSIGNED NOT NULL,
   ip        VARCHAR(15),
   ua        VARCHAR(100)
)

Relationships