Difference between revisions of "Database Table: loginlog"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'loginlog =Definition= <source lang="sql"> CREATE TABLE loginlog ( userid INT UNSIGNED NOT NULL, logintime INT UNSIGNED NOT NULL, INDEX ...')
 
m
Line 1: Line 1:
[[Category: Database Table|loginlog]]
+
 
=Definition=
+
= Definition =
 +
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE loginlog (
 
CREATE TABLE loginlog (
Line 12: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Table|loginlog]]

Revision as of 20:18, 31 March 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

Location

Clustered database