Ferreteria/sql/tf node: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
m (Woozle moved page Ferreteria/modules/TextFerret/tf node to Ferreteria/sql/tf node without leaving a redirect: this is where all table-pages should go)
(post-move: added module link)
Line 1: Line 1:
==About==
==About==
* '''Purpose''': a thing that has values
* '''Purpose''': a thing that has values
* '''Module''': {{l/ferreteria/module|TextFerret}}
* '''History''':
* '''History''':
** '''2017-03-12''' started
** '''2017-03-12''' started

Revision as of 09:44, 28 July 2017

About

  • Purpose: a thing that has values
  • Module: Template:L/ferreteria/module
  • History:
    • 2017-03-12 started
    • 2017-04-09 decided there really should be a WhenMade timestamp; can always remove later

SQL

<mysql>CREATE TABLE `tf_node` (

 `ID`       INT(4)        NOT NULL AUTO_INCREMENT,
 `Class`    VARCHAR(255)  NOT NULL COMMENT "app-defined code to indicate what class of object to use for wrapping this node and its values",
 `WhenMade` DATETIME      NOT NULL DEFAULT CURRENT_TIMESTAMP,
 PRIMARY KEY(`ID`)

) ENGINE=InnoDB;</mysql>