Difference between revisions of "Database Table: dbweights"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'dbweights =Definition= <source lang="sql"> CREATE TABLE dbweights ( dbid TINYINT UNSIGNED NOT NULL, role VARCHAR(25) NOT NULL, PRIMARY KE...')
 
Line 1: Line 1:
[[Category: Database Table|dbweights]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE dbweights (
 
CREATE TABLE dbweights (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|dbweights]]

Revision as of 11:18, 31 March 2009

Definition

CREATE TABLE dbweights (
  dbid    TINYINT UNSIGNED NOT NULL,
  ROLE    VARCHAR(25) NOT NULL,
  PRIMARY KEY (dbid, ROLE),
  norm    TINYINT UNSIGNED NOT NULL,
  curr    TINYINT UNSIGNED NOT NULL
)

Relationships

Location

Global database