Guest User

Untitled

a guest
Apr 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. CREATE TABLE `product_stock` (
  2. `product_id` int(11) unsigned NOT NULL,
  3. `stock_level` int(11) NOT NULL DEFAULT '0',
  4. `minimum_cart_quantity` int(11) unsigned NOT NULL,
  5. `maximum_cart_quantity` int(11) unsigned NOT NULL DEFAULT '0',
  6. `minimum_stock_level` int(11) NOT NULL DEFAULT '0',
  7. `alert_level_reached_at` datetime DEFAULT NULL,
  8. `alert_level` int(11) DEFAULT NULL,
  9. PRIMARY KEY (`product_id`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Add Comment
Please, Sign In to add comment