VbzCart/tables/ord msg

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | tables
Revision as of 01:19, 10 July 2009 by Woozle (talk | contribs) (New page: ==About== * '''Purpose''': Record of messages sent/received about this order * '''Notes''': This subsystem should probably be rethought at some point when everything else is working * '''R...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: Record of messages sent/received about this order
  • Notes: This subsystem should probably be rethought at some point when everything else is working
  • Relates to: core_orders, ord_pkgs, ord_msg_media
  • History:
    • 2009-07-09 Adapted from MS Access
  • Fields:
    • TxtFrom (was "From")
    • TxtTo (was "To")
    • TxtRe (was "Subject")
    • doRelay: does message need to be sent to a third party? (this has a specific meaning, but if I can't remember/reconstruct what it was... are any records using it?)
    • WhenRelayed should only ever be set if doRelay is TRUE

SQL

<mysql>CREATE TABLE `ord_msg` (

 `ID`         INT              NOT NULL AUTO_INCREMENT,
 `ID_Ord`     INT              NOT NULL COMMENT "core_orders.ID",
 `ID_Pkg`     INT          DEFAULT NULL COMMENT "ord_pkgs.ID",
 `ID_Media`   INT              NOT NULL COMMENT "ord_msg_media.ID",
 `TxtFrom`    VARCHAR(63)  DEFAULT NULL COMMENT "who this message is from",
 `TxtTo`      VARCHAR(63)  DEFAULT NULL COMMENT "who this message is to",
 `TxtRe`      VARCHAR(127) DEFAULT NULL COMMENT "subject of message",
 `doRelay`    BOOL         DEFAULT NULL COMMENT "YES = this message needs to be relayed",
 `WhenCreated` DATETIME    DEFAULT NULL COMMENT "when message was originally created",
 `WhenEntered` DATETIME    DEFAULT NULL COMMENT "when message was entered into database",
 `WhenRelayed` DATETIME    DEFAULT NULL COMMENT "when message was relayed",
 `Message`    MEDIUMTEXT       NOT NULL COMMENT "the message",
 `Notes`      VARCHAR(255) DEFAULT NULL COMMENT "internal notes",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>