Difference between revisions of "Database Table: modlog"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'modlog =Definition= <source lang="sql"> CREATE TABLE modlog ( journalid INT UNSIGNED NOT NULL, modid MEDIUMINT UNSIGNED NOT NULL, PRIMARY...')
 
Line 1: Line 1:
[[Category: Database Table|modlog]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE modlog (
 
CREATE TABLE modlog (
Line 13: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|modlog]]

Revision as of 11:21, 2 April 2009

Definition

CREATE TABLE modlog (
  journalid  INT UNSIGNED NOT NULL,
  modid      MEDIUMINT UNSIGNED NOT NULL,
  PRIMARY KEY (journalid, modid),
  posterid   INT UNSIGNED NOT NULL,
  subject    CHAR(30),
  logtime    DATETIME,
  KEY (journalid, logtime)
)

Relationships

Location

Clustered database