Difference between revisions of "Database Table: portal typemap"

From Dreamwidth Notes
Jump to: navigation, search
Line 1: Line 1:
 +
{{Database Table|name=portal_typemap|table type=global|removed=1}}
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE portal_typemap (
 
CREATE TABLE portal_typemap (
Line 9: Line 9:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer|removed=1}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Removed Database Tables|portal_typemap]]
+

Revision as of 04:19, 30 January 2010

Note: This table is removed and no longer used.
This is a global table.

Definition

CREATE TABLE portal_typemap (
id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL,
class_name VARCHAR(255),
PRIMARY KEY (id),
UNIQUE (class_name)
)