Back
/*
Table: unfi

Columns:
    brand varchar(30)
    sku int
    size varchar(25)
    upc int or varchar(13), dbms dependent
    units int
    cost dbms currency
    description varchar(35)
    depart varchar(15)  

Depends on:
    none

Use:
This table stores items from the vendor UNFI.
Of note: depart is the vendors categorization setting,
not IT CORE/Fannie's. Size relates to an indivdual product.
Units relates to a case. So a case of beer has 24
units, each with a size of 12 oz.

Deprecated. Use vendors (table) and vendorItems(table)
instead. Vendor-based functionality should
allow for more than one vendor.
*/
Back