ALTER TABLE inventory_items
  MODIFY category ENUM(
    'green_bean',
    'packaging',
    'shipping',
    'consumable',
    'merch',
    'promo',
    'other'
  ) NOT NULL;
