Difference between revisions of "Database Table: usertrans"

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

Revision as of 13:25, 2 October 2009

Definition

CREATE TABLE `usertrans` (
  `userid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  `time` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  `what` VARCHAR(25) NOT NULL DEFAULT '',
  `before` VARCHAR(25) NOT NULL DEFAULT '',
  `after` VARCHAR(25) NOT NULL DEFAULT '',
  KEY `userid` (`userid`),
  KEY `time` (`time`)
)

Relationships