VbzCart/tables/stk bin history
Jump to navigation
Jump to search
About
to be documented
SQL
<mysql>DROP TABLE IF EXISTS `stk_bin_history`;
CREATE TABLE `stk_bin_history` (
`ID` INT NOT NULL AUTO_INCREMENT, `ID_Bin` INT NOT NULL COMMENT "stk_bins.ID of bin being moved", `WhenDone` DATETIME NOT NULL COMMENT "when the move happened", `ID_Srce` INT COMMENT "stk_places.ID of where the bin came from (NULL = new bin)", `ID_Dest` INT COMMENT "stk_places.ID of where the bin was moved to (NULL = bin destroyed)", `Notes` varchar(255) DEFAULT NULL COMMENT "optional explanatory notes", PRIMARY KEY(`ID`)
) ENGINE = MYISAM;</mysql>