Advertisement
Guest User

jobs

a guest
Sep 7th, 2011
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. CREATE TABLE `jobs` (
  2. `id` VARCHAR(36) NOT NULL,
  3. `job_number` VARCHAR(50) NOT NULL,
  4. `customer_reference` VARCHAR(50) NOT NULL,
  5. `quantity` INT(10) UNSIGNED NOT NULL,
  6. `mf_job_id` VARCHAR(36) NOT NULL,
  7. `act_actual_id` VARCHAR(36) NOT NULL,
  8. `status_id` INT(11) NOT NULL,
  9. `due_date` DATETIME NOT NULL,
  10. `requested_ship_date` DATETIME NULL DEFAULT NULL,
  11. `deleted` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
  12. `unc_path` VARCHAR(255) NULL DEFAULT NULL,
  13. `customer_name` VARCHAR(255) NULL DEFAULT NULL,
  14. `priority` INT(11) NOT NULL DEFAULT '0',
  15. `date_added` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
  16. PRIMARY KEY (`id`),
  17. INDEX `status_id` (`status_id`)
  18. )
  19. ENGINE=InnoDB
  20. ROW_FORMAT=DEFAULT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement