Difference between revisions of "Database Table: s2checker"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 's2checker =Definition= <source lang="sql"> CREATE TABLE s2checker ( s2lid INT UNSIGNED NOT NULL, PRIMARY KEY (s2lid), checker MEDIUMBLOB ) <...')
 
(Robot: Updating: Format)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|s2checker]]
+
{{Database Table|name=s2checker|table type=global|need desc=1|repo=dw-free}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
CREATE TABLE s2checker
+
CREATE TABLE s2checker (
(
+
    s2lid INT UNSIGNED NOT NULL,
  s2lid INT UNSIGNED NOT NULL,
+
    PRIMARY KEY (s2lid),
  PRIMARY KEY (s2lid),
+
    checker MEDIUMBLOB
  checker MEDIUMBLOB
+
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 16:03, 22 July 2010

This is a global table.

Definition

CREATE TABLE s2checker (
    s2lid INT UNSIGNED NOT NULL,
    PRIMARY KEY (s2lid),
    checker MEDIUMBLOB
)

Relationships