Difference between revisions of "Database Table: modlog"
From Dreamwidth Notes
(Created page with 'modlog =Definition= <source lang="sql"> CREATE TABLE modlog ( journalid INT UNSIGNED NOT NULL, modid MEDIUMINT UNSIGNED NOT NULL, PRIMARY...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE modlog ( | CREATE TABLE modlog ( | ||
Line 13: | Line 13: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )