VbzCart/docs/tables/cache queries
Jump to navigation
Jump to search
About
- Purpose: List of stored procedures which update one table from others
SQL
<section begin=sql /><mysql>DROP TABLE IF EXISTS `data_procs`;
CREATE TABLE `data_procs` (
`ID` INT NOT NULL AUTO_INCREMENT COMMENT "procedure ID", `Name` varchar(127) NOT NULL COMMENT "name of SQL stored procedure", `isActive` BOOL COMMENT "FALSE = skip this record", `doesClear` BOOL COMMENT "TRUE = clears all data from table before starting", `Notes` varchar(255) DEFAULT NULL COMMENT "explanatory notes", PRIMARY KEY (`ID`) ) ENGINE = MYISAM;</mysql>
<section end=sql />