VbzCart/docs/tables/ctg supp: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Jump to navigation Jump to search
imported>Woozle
(New page: ==About== * '''Purpose''': Information about suppliers which isn't needed for customer web site ==SQL== <section begin=sql /><mysql>CREATE TABLE `ctg_supp` ( ID INT NOT NULL COMMENT "ca...)
 
m (Woozle moved page VbzCart/VbzCart/tables/ctg supp to VbzCart/docs/tables/ctg supp without leaving a redirect: part 3/5)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
==About==
==About==
* '''Status''': DEPRECATED -- no code currently uses this table; will remove eventually
* '''Purpose''': Information about suppliers which isn't needed for customer web site
* '''Purpose''': Information about suppliers which isn't needed for customer web site
* '''History''':
** '''2009-07-02''' finally implemented on L48 server
** '''2016-02-01''' deprecating -- this table doesn't seem necessary
==SQL==
==SQL==
<section begin=sql /><mysql>CREATE TABLE `ctg_supp` (
<mysql>CREATE TABLE `ctg_supp` (
   ID INT NOT NULL COMMENT "cat_supp.ID - supplier to which information applies",
   ID INT NOT NULL COMMENT "cat_supp.ID - supplier to which information applies",
   ID_PriceFunc INT DEFAULT NULL COMMENT "ctg_prc_funcs.ID - function to use when calculating prices for this supplier",
   ID_PriceFunc INT DEFAULT NULL COMMENT "ctg_prc_funcs.ID - function to use when calculating prices for this supplier",
Line 8: Line 12:
)
)
ENGINE = MYISAM;</mysql>
ENGINE = MYISAM;</mysql>
<section end=sql />

Latest revision as of 01:56, 25 February 2024

About

  • Status: DEPRECATED -- no code currently uses this table; will remove eventually
  • Purpose: Information about suppliers which isn't needed for customer web site
  • History:
    • 2009-07-02 finally implemented on L48 server
    • 2016-02-01 deprecating -- this table doesn't seem necessary

SQL

<mysql>CREATE TABLE `ctg_supp` (

  ID INT NOT NULL COMMENT "cat_supp.ID - supplier to which information applies",
  ID_PriceFunc INT DEFAULT NULL COMMENT "ctg_prc_funcs.ID - function to use when calculating prices for this supplier",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>