Difference between revisions of "Database Table: actionhistory"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'actionhistory =Definition= <source lang="sql"> CREATE TABLE actionhistory ( time INT UNSIGNED NOT NULL, clusterid TINYINT UNSIGNED NOT N...')
 
m (reformat, right category)
Line 1: Line 1:
[[Category: Database Table|actionhistory]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE actionhistory (
 
CREATE TABLE actionhistory (
Line 12: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
Global db
 
Global db
 +
 +
[[Category: Database Table|actionhistory]]

Revision as of 08:00, 25 March 2009

Definition

CREATE TABLE actionhistory (
    TIME      INT UNSIGNED NOT NULL,
    clusterid TINYINT UNSIGNED NOT NULL,
    what      CHAR(2) NOT NULL,
    COUNT     INT UNSIGNED NOT NULL DEFAULT 0,
    INDEX(TIME)
 
)

Relationships

Location

Global db