Guest User

parts

a guest
Sep 7th, 2011
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. CREATE TABLE `parts` (
  2. `id` VARCHAR(36) NOT NULL,
  3. `name` VARCHAR(50) NOT NULL,
  4. `quantity_per_assembly` INT(11) NOT NULL,
  5. `total_quantity` INT(10) UNSIGNED NOT NULL,
  6. `act_part_id` VARCHAR(36) NOT NULL,
  7. `material_type` VARCHAR(100) NOT NULL,
  8. `powder_coat_colour` VARCHAR(100) NOT NULL,
  9. `status_id` INT(10) UNSIGNED NOT NULL,
  10. `deleted` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
  11. `job_id` VARCHAR(36) NOT NULL,
  12. `unc_path` VARCHAR(255) NULL DEFAULT NULL,
  13. PRIMARY KEY (`id`),
  14. INDEX `job_id` (`job_id`),
  15. INDEX `status_id` (`status_id`)
  16. )
  17. ENGINE=InnoDB
  18. ROW_FORMAT=DEFAULT
Advertisement
Add Comment
Please, Sign In to add comment