Difference between revisions of "Database Table: supportprop"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'supportprop =Definition= <source lang="sql"> CREATE TABLE supportprop ( spid int(10) unsigned NOT NULL default '0', prop varchar(30) NOT NULL, ...')
 
Line 1: Line 1:
[[Category: Database Table|supportprop]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE supportprop (
 
CREATE TABLE supportprop (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|supportprop]]

Revision as of 15:22, 31 March 2009

Definition

CREATE TABLE supportprop (
  spid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  prop VARCHAR(30) NOT NULL,
  VALUE VARCHAR(255) NOT NULL,
  PRIMARY KEY (spid, prop)
)

Relationships

Location

Global database