Ferreteria/sql/tf leaf text: Difference between revisions
< Ferreteria | sql
Jump to navigation
Jump to search
(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...") |
m (Woozle moved page Ferreteria/modules/TextFerret/tf text to Ferreteria/modules/TextFerret/tf value text without leaving a redirect: let's try this...) |
(No difference)
|
Revision as of 18:38, 12 March 2017
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>