Difference between revisions of "Database Table: includetext"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'includetext =Definition= <source lang="sql"> CREATE TABLE includetext ( incname VARCHAR(80) NOT NULL PRIMARY KEY, inctext TEXT, updatetime ...')
 
Line 1: Line 1:
[[Category: Database Table|includetext]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE includetext (
 
CREATE TABLE includetext (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|includetext]]

Revision as of 16:20, 31 March 2009

Definition

CREATE TABLE includetext (
  incname  VARCHAR(80) NOT NULL PRIMARY KEY,
  inctext  TEXT,
  updatetime   INT UNSIGNED NOT NULL,
  INDEX (updatetime)
)

Relationships

Location

Global database