Difference between revisions of "VbzCart/tables/ord pull"

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
(Notes -> NotesPull/NotesFree)
(obsolete now)
Line 1: Line 1:
 +
{{hdr/status/obsolete|This table (ord_pull) is being replaced by {{l/vbzcart/table|event_vc_ord_change}}.}}
 
==About==
 
==About==
 
* '''Purpose''': Log of order pulls/releases
 
* '''Purpose''': Log of order pulls/releases
Line 12: Line 13:
 
*** This should ease the transition to using the {{vbzcart|table|ord_change}} table
 
*** This should ease the transition to using the {{vbzcart|table|ord_change}} table
 
==SQL==
 
==SQL==
<section begin=sql /><mysql>CREATE TABLE `ord_pull` (
+
<mysql>CREATE TABLE `ord_pull` (
 
   `ID`        INT            NOT NULL AUTO_INCREMENT,
 
   `ID`        INT            NOT NULL AUTO_INCREMENT,
 
   `ID_Ord`    INT            NOT NULL COMMENT "core_orders.ID",
 
   `ID_Ord`    INT            NOT NULL COMMENT "core_orders.ID",
Line 27: Line 28:
 
)
 
)
 
ENGINE = MYISAM;</mysql>
 
ENGINE = MYISAM;</mysql>
<section end=sql />
 

Revision as of 12:38, 1 June 2017

This documentation is obsolete, and is being kept solely for archival purposes.
This table (ord_pull) is being replaced by event_vc_ord_change.

About

  • Purpose: Log of order pulls/releases
  • Notes: this will eventually be replaced by ord_change
  • Relates to: core_orders, ord_pull_type
  • Fields:
    • WhenFreed (was WhenReleased): when the pull was cancelled/revoked; if it is set, this pull is inactive
    • Notes* may include quite lengthy explanations of what happened (similar to ord_msg)
  • History:
    • 2009-07-09 Adapted from MS Access
    • 2009-07-10 Expanded "Notes" from VARCHAR(255) to MEDIUMTEXT
    • 2009-10-27 Added user/machine fields; Notes -> NotesPull, added NotesFree
      • This should ease the transition to using the ord_change table

SQL

<mysql>CREATE TABLE `ord_pull` (

 `ID`         INT            NOT NULL AUTO_INCREMENT,
 `ID_Ord`     INT            NOT NULL COMMENT "core_orders.ID",
 `ID_Type`    INT            NOT NULL COMMENT "ord_pull_type.ID",
 `WhenPulled` DATETIME       NOT NULL COMMENT "when this pull occurred",
 `WhenFreed`  DATETIME   DEFAULT NULL COMMENT "when this pull was dropped",

/* fields relating to who pulled the order */

 `VbzUser`    VARCHAR(127)            COMMENT "VbzCart username, if available",
 `SysUser`    VARCHAR(127)            COMMENT "operating system username, if available",
 `Machine`    VARCHAR(63)    NOT NULL COMMENT "network name or IP address of client",
 `NotesPull`  MEDIUMTEXT DEFAULT NULL COMMENT "human-added notes about the pull",
 `NotesFree`  MEDIUMTEXT DEFAULT NULL COMMENT "human-added notes about the release",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>