Difference between revisions of "Database Table: supportprop"
From Dreamwidth Notes
(Created page with 'supportprop =Definition= <source lang="sql"> CREATE TABLE supportprop ( spid int(10) unsigned NOT NULL default '0', prop varchar(30) NOT NULL, ...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE supportprop ( | CREATE TABLE supportprop ( | ||
Line 10: | Line 10: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )