Guest User

Untitled

a guest
May 16th, 2018
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS stock (
  2. product_id int(10) unsigned NOT NULL,
  3. client_id int(10) unsigned NOT NULL,
  4. warehouse_id smallint(5) unsigned NOT NULL,
  5. quantity smallint(5) unsigned NOT NULL,
  6. multiplier smallint(5) unsigned NOT NULL,
  7. KEY item_id (product_id,warehouse_id)
  8. )
Add Comment
Please, Sign In to add comment