Ferreteria/sql/tf leaf text

From Woozle Writes Code
< Ferreteria‎ | sql
Revision as of 15:25, 12 March 2017 by htyp>Woozle (Created page with "==About== This table stores chunks of text. A wiki page consists of one or more tf_text records. ==History== * '''2017-03-12''' Started, because it's needed for multiple sub-p...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

This table stores chunks of text. A wiki page consists of one or more tf_text records.

History

  • 2017-03-12 Started, because it's needed for multiple sub-projects.

SQL

<mysql>CREATE TABLE `tf_text` (

 `ID`        INT(4)           NOT NULL AUTO_INCREMENT,
 `Value`     TEXT         DEFAULT NULL COMMENT "Parent project (can be client or category)",
 PRIMARY KEY(`ID`)

) ENGINE=InnoDB;</mysql>