Difference between revisions of "Database Table: sessions"

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

Revision as of 13:21, 2 October 2009

Definition

CREATE TABLE sessions (
   userid     MEDIUMINT UNSIGNED NOT NULL,
   sessid     MEDIUMINT UNSIGNED NOT NULL,
   PRIMARY KEY (userid, sessid),
   auth       CHAR(10) NOT NULL,
   exptype    ENUM('short','long') NOT NULL,  # browser closed OR "infinite"
   timecreate INT UNSIGNED NOT NULL,
   timeexpire INT UNSIGNED NOT NULL,
   ipfixed    CHAR(15)  # IF NULL, NOT fixed at IP.
)

Relationships