Difference between revisions of "VbzCart/tables/ stk containers"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(New page: ==About== * '''Purpose''': Aggregate table listing all places where stock can be, mainly for the history table * '''Fields''': ** '''Name''': auto-generated but hopefully somewhat descript...)
 
(not used; use the query instead)
 
Line 1: Line 1:
 
==About==
 
==About==
 
* '''Purpose''': Aggregate table listing all places where stock can be, mainly for the history table
 
* '''Purpose''': Aggregate table listing all places where stock can be, mainly for the history table
 +
* '''Status''': NOT USED; use {{vbzcart/query|qryStock_containers}} instead
 
* '''Fields''':
 
* '''Fields''':
 
** '''Name''': auto-generated but hopefully somewhat descriptive and human-readable name for this container
 
** '''Name''': auto-generated but hopefully somewhat descriptive and human-readable name for this container

Latest revision as of 11:19, 9 March 2009

About

  • Purpose: Aggregate table listing all places where stock can be, mainly for the history table
  • Status: NOT USED; use
  1. REDIRECT Template:l/vc/query instead
  • Fields:
    • Name: auto-generated but hopefully somewhat descriptive and human-readable name for this container

SQL

<mysql>DROP TABLE IF EXISTS `_stk_containers`; CREATE TABLE `_stk_containers` (

  `IDS` varchar(31) NOT NULL COMMENT "Type + ID_forType: unique ID for this container, across all types",
  `Type` char(1) NOT NULL COMMENT "identifies which type of container each record refers to",
  `ID_forType` INT NOT NULL COMMENT "record's unique ID for that type",
  `Name` varchar(63) NOT NULL COMMENT "auto-generated human-readable name for this container",
  `When` DATETIME COMMENT "applicable date, as a somewhat more human-readable cue for some of the container types",
  PRIMARY KEY(`IDS`)
) ENGINE = MYISAM;</mysql>