Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. desc jobs;
  2. +-----------------------+--------------+------+-----+---------+----------------+
  3. | Field | Type | Null | Key | Default | Extra |
  4. +-----------------------+--------------+------+-----+---------+----------------+
  5. | id | int(11) | NO | PRI | NULL | auto_increment |
  6. | name | varchar(255) | YES | | NULL | |
  7. | job_queue_id | int(11) | YES | MUL | NULL | |
  8. | job_action_id | int(11) | YES | | NULL | |
  9. | user_id | int(11) | YES | MUL | NULL | |
  10. +-----------------------+--------------+------+-----+---------+----------------+
  11.  
  12. desc organisations;
  13. +------------+--------------+------+-----+---------+----------------+
  14. | Field | Type | Null | Key | Default | Extra |
  15. +------------+--------------+------+-----+---------+----------------+
  16. | id | int(11) | NO | PRI | NULL | auto_increment |
  17. | name | varchar(255) | YES | | NULL | |
  18. | enabled | tinyint(1) | YES | | 1 | |
  19. +------------+--------------+------+-----+---------+----------------+
  20.  
  21. desc job_queues;
  22. +-----------------+--------------+------+-----+---------+----------------+
  23. | Field | Type | Null | Key | Default | Extra |
  24. +-----------------+--------------+------+-----+---------+----------------+
  25. | id | int(11) | NO | PRI | NULL | auto_increment |
  26. | name | varchar(255) | YES | | NULL | |
  27. | organisation_id | int(11) | YES | MUL | NULL | |
  28. +-----------------+--------------+------+-----+---------+----------------+
  29.  
  30. desc attached_files;
  31. +------------+--------------+------+-----+---------+----------------+
  32. | Field | Type | Null | Key | Default | Extra |
  33. +------------+--------------+------+-----+---------+----------------+
  34. | id | int(11) | NO | PRI | NULL | auto_increment |
  35. | kind | int(11) | YES | | NULL | |
  36. | location | varchar(255) | YES | | NULL | |
  37. +------------+--------------+------+-----+---------+----------------+
  38.  
  39. desc job_attached_files;
  40. +------------------+----------+------+-----+---------+----------------+
  41. | Field | Type | Null | Key | Default | Extra |
  42. +------------------+----------+------+-----+---------+----------------+
  43. | id | int(11) | NO | PRI | NULL | auto_increment |
  44. | job_id | int(11) | YES | MUL | NULL | |
  45. | attached_file_id | int(11) | YES | MUL | NULL | |
  46. +------------------+----------+------+-----+---------+----------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement