VbzCart/docs/tables/cache tables: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (history update) |
imported>Woozle (updating SQL) |
||
Line 5: | Line 5: | ||
** '''2010-11-09''' renamed data_tables -> cache tables | ** '''2010-11-09''' renamed data_tables -> cache tables | ||
==SQL== | ==SQL== | ||
<section begin=sql /><mysql> | <section begin=sql /><mysql>CREATE TABLE `cache_tables` ( | ||
CREATE TABLE ` | |||
`ID` INT NOT NULL AUTO_INCREMENT, | `ID` INT NOT NULL AUTO_INCREMENT, | ||
`Name` varchar(63) NOT NULL COMMENT "name of table being tracked", | `Name` varchar(63) NOT NULL COMMENT "name of table being tracked", |
Revision as of 14:14, 9 November 2010
About
- Purpose: List of tables involved in data caching (either as a source or as a cache)
- History:
- 2009-04-12 made the "isActive" field official, and changed it from BIT(1) to TINYINT(1)
- 2010-11-09 renamed data_tables -> cache tables
SQL
<section begin=sql /><mysql>CREATE TABLE `cache_tables` (
`ID` INT NOT NULL AUTO_INCREMENT, `Name` varchar(63) NOT NULL COMMENT "name of table being tracked", `isActive` tinyint(1) NOT NULL default '0' COMMENT "FALSE = do not use this table", `WhenUpdated` DATETIME DEFAULT NULL COMMENT "when the table's data was last modified", `Notes` varchar(255) DEFAULT NULL COMMENT "descriptive notes", PRIMARY KEY(`ID`) ) ENGINE = MYISAM;</mysql>
<section end=sql />