Difference between revisions of "Database Table: usertrans"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'usertrans =Definition= <source lang="sql"> CREATE TABLE `usertrans` ( `userid` int(10) unsigned NOT NULL default '0', `time` int(10) unsigned NOT...')
 
Line 1: Line 1:
[[Category: Database Table|usertrans]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE `usertrans` (
 
CREATE TABLE `usertrans` (
Line 13: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|usertrans]]

Revision as of 10:44, 4 April 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

Location

Global database