Difference between revisions of "Database Table: infohistory"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Changing Category:Database Tables)
Line 1: Line 1:
=Definition=
+
{{#set:name=infohistory|table type=global}}
 
+
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE infohistory (
 
CREATE TABLE infohistory (
Line 11: Line 10:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
Foreign key userid to [[Database Table: user|user]].userid
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category:Database Tables Needing Conversion|infohistory]]
+

Revision as of 23:57, 4 October 2009

CREATE TABLE infohistory (
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  what VARCHAR(15) NOT NULL DEFAULT '',
  timechange datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  oldvalue VARCHAR(255) DEFAULT NULL,
  other VARCHAR(30) DEFAULT NULL,
  KEY userid (userid)
)

Relationships

Outgoing

  • Foreign key: userid to user.userid