Ferreteria/v0.41/sql/node leaf int: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(Created page with "==About== * '''Purpose''': Node ({{l/version|sql|node}}) leafs that are integer in nature * '''Depends on''': {{l/version|sql|node_leaf}} ==History== * '''2020-01-23''' create...")
 
m (2 revisions imported: moving this project here)
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 16:44, 22 May 2022

About

History

  • 2020-01-23 created

SQL

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