Difference between revisions of "Database Table: knob"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'keywords =Definition= <source lang="sql"> CREATE TABLE keywords ( kwid int(10) unsigned NOT NULL auto_increment, keyword varchar(80) binary NOT N...')
 
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category: Database Table|keywords]]
+
{{Database Table|name=knob|table type=global|repo=dw-free|removed=1|removed in=a46c62533652}}
=Definition=
+
Removed in [http://bugs.dwscoalition.org/show_bug.cgi?id=1549 bug 1549]
 +
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE keywords (
 
CREATE TABLE keywords (
Line 9: Line 10:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 16:26, 22 July 2010

Note: This table is removed and no longer used. This table was removed in dw-free changeset a46c62533652 [1]
This is a global table. Removed in bug 1549

Definition

CREATE TABLE keywords (
  kwid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  keyword VARCHAR(80) BINARY NOT NULL DEFAULT '',
  PRIMARY KEY  (kwid),
  UNIQUE KEY kwidx (keyword)
)