VbzCart/tables/card auth code

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

About

  • Purpose: reference table which translates AVS codes into natural language
  • History:
    • 2009-07-09 Adapted from MS Access

SQL

<mysql>CREATE TABLE `card_auth_code` (

 `Ch`    CHAR(1)     NOT NULL COMMENT "character returned by AVS",
 `Descr` VARCHAR(63) NOT NULL COMMENT "description of what the code means",

PRIMARY KEY(`Ch`) ) ENGINE = MYISAM;</mysql>