Ferreteria/v0.41/sql/node leaf time

From Woozle Writes Code
< Ferreteria
Revision as of 19:52, 17 January 2020 by htyp>Woozle (Created page with "==About== * '''Purpose''': Node ({{l/version|sql|node}}) leafs that store timestamps * '''Depends on''': {{l/version|sql|node_leaf}} ==History== * '''2020-01-17''' created ==S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

History

  • 2020-01-17 created

SQL

CREATE TABLE  `node_leaf_time` (
  `ID_Leaf` INT(4)        NOT NULL COMMENT "ID of leaf to which this value belongs",
  `Value`   DATETIME      DEFAULT NULL COMMENT "the value",
  PRIMARY KEY(`ID_Leaf`)
) ENGINE=InnoDB;