Difference between revisions of "Database Table: userlog"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'userlog =Definition= <source lang="sql"> CREATE TABLE userlog ( userid INT UNSIGNED NOT NULL, logtime INT UNSIGNED NOT NULL, ...')
 
Line 1: Line 1:
[[Category: Database Table|userlog]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE userlog (
 
CREATE TABLE userlog (
Line 16: Line 16:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|userlog]]

Revision as of 10:43, 4 April 2009

Definition

CREATE TABLE userlog (
    userid        INT UNSIGNED NOT NULL,
    logtime       INT UNSIGNED NOT NULL,
    action        VARCHAR(30) NOT NULL,
    actiontarget  INT UNSIGNED,
    remoteid      INT UNSIGNED,
    ip            VARCHAR(15),
    uniq          VARCHAR(15),
    extra         VARCHAR(255),
 
    INDEX (userid)
)

Relationships

Location

Global database