Ferreteria/v0.41/sql/node leaf int
Jump to navigation
Jump to search
About
- Purpose: Node (Template:L/version) leafs that are integer in nature
- Depends on: Template:L/version
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;