Difference between revisions of "Database Table: schematables"
From Dreamwidth Notes
(Created page with 'schematables =Definition= <source lang="sql"> CREATE TABLE schematables ( tablename varchar(40) NOT NULL default '', public_browsable enum('0','1...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE schematables ( | CREATE TABLE schematables ( | ||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|schematables]] |
Revision as of 11:23, 2 April 2009
Definition
CREATE TABLE schematables ( tablename VARCHAR(40) NOT NULL DEFAULT '', public_browsable enum('0','1') NOT NULL DEFAULT '0', redist_mode enum('off','insert','replace') NOT NULL DEFAULT 'off', des text, PRIMARY KEY (tablename) )