VbzCart/docs/tables/event vc bin

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Revision as of 00:12, 18 April 2017 by imported>Woozle (Created page with "==About== * '''Purpose''': sub-event to work with Ferreteria's eventPlex (see Ferreteria/sql/event, Ferreteria/usage/events, other pages to be written) * '''Event''':...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

History

  • 2017-04-17 started design

SQL

<mysql>CREATE TABLE `event_vc_bin` (

 `ID_Event`                INT NOT NULL COMMENT "event.ID of parent event",
 `ID_Bin`                  INT NOT NULL COMMENT "stk_bins.ID of bin being moved",
 `ID_Srce`                 INT NOT NULL COMMENT "stk_places.ID of where the bin came from (NULL = new bin)",
 `ID_Dest`                 INT NOT NULL COMMENT "stk_places.ID of where the bin was moved to (NULL = bin destroyed)",
 PRIMARY KEY (`ID_Event`)

) ENGINE = InnoDB;</mysql>