Back
/*
Table: prodUpdate

Columns:
    prodUpdateID int
    updateType varchar
    upc int or varchar, dbms dependent
    description varchar
    price dbms currency
    salePrice dbms currency
    cost dbms currency
    dept int
    tax bit
    fs bit
    scale bit
    likeCode int
    modified datetime
    user int
    forceQty bit
    noDisc bit
    inUse bit

Depends on:
    products (table)

Use:
In theory, every time a product is change in fannie,
the update is logged here. In practice, not all
tools/cron jobs/sprocs/etc actually do. They probably
should though, ideally.
*/
Back