VbzCart/docs/tables/var global: Difference between revisions
Jump to navigation
Jump to search
imported>Woozle (New page: ==About== * '''Status''': not currently being used, but is probably needed for proper stats display in controlbar * '''Purpose''':computed variables, cache timestamps, and other variable s...) |
imported>Woozle m (moved VbzCart/tables/stats to VbzCart/tables/var global: more universal and descriptive name) |
(No difference)
|
Revision as of 15:19, 27 September 2009
About
- Status: not currently being used, but is probably needed for proper stats display in controlbar
- Purpose:computed variables, cache timestamps, and other variable stuff
SQL
<section begin=sql /><mysql> CREATE TABLE `stats` (
`Name` varchar(32) NOT NULL COMMENT 'name of variable', `Value` varchar(255) COMMENT 'value of variable', PRIMARY KEY(`Name`) ) ENGINE = MYISAM;</mysql>
<section end=sql />