Ferreteria/sql/tf node

From Woozle Writes Code
< Ferreteria‎ | sql
Revision as of 23:00, 12 March 2017 by htyp>Woozle (Created page with "==About== * '''Purpose''': a thing that has values * '''History''': ** '''2017-03-12''' started ==SQL== <mysql>CREATE TABLE `tf_node` ( `ID` INT(4) NOT NULL AU...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: a thing that has values
  • History:
    • 2017-03-12 started

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",
 PRIMARY KEY(`ID`)

) ENGINE=InnoDB;</mysql>