Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
12,276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.25 KB | None | 0 0
  1. INSERT INTO `account` (`id`, `email`, `password`) VALUES
  2. ('0', 'test@gmail.com', 'passw0rd'),
  3. ('1', 'test1@yahoo.com', 'pass'),
  4. ('2', 'user2@gmail.com', 'hunter2'),
  5. ('3', 'company@name.com', 'zaqwsx'),
  6. ('4', 'oof@gmail.com', 'ouchowie'),
  7. ('5', 'dave.cl@hotmail.com', '080385dave'),
  8. ('6', 'worsalldan@hotmail.com', 'qwerty321'),
  9. ('7', 'Nygirl42@gmail.com', 'abcd4321'),
  10. ('8', 'alexnewcombe@hotmail.com', 'qWeRtY123'),
  11. ('9', 'jonathanblacks@gmail.com', 'passy123'),
  12. ('10', 'Joanne12@yahoo.com', ennaoj99'),
  13. ('11', 'bobbyjenkins@outlook.com', 'ilovemydog321'),
  14. ('12', 'craigdavies@hotmail.co.uk', 'Liverpoolfc'),
  15. ('13', 'liamberk@hotmail.com', '150499liam'),
  16. ('14', 'maximusskeet@hotmail.com', 'skeety55'),
  17. ('15', 'elliejohnson@gmail.com', '556677ellie'),
  18. ('16', 'Jassarg@outlook.com', 'jasmineisqueen123'),
  19. ('17', 'HellyHelen@outlook.com', 'Helenssecretpassword99'),
  20. ('18', 'DVS99@outlook.co.uk', 'daVIDsHAW'),
  21. ('19', 'T.hales@hotmail.co.uk', 'jlwgb2344'),
  22. ('20', 'samthesnake@gmail.com', 'hhkkggjj1122');
  23.  
  24.  
  25. INSERT INTO `user` (`id`, `first_name`, `second_name`, `gender`, `location`, `phone_number`) VALUES
  26. ('0', 'Adam', 'Smith', 'M', 'Liverpool', '02746128271'),
  27. ('1', 'Marlie', 'Durham', 'F', 'Liverpool', '02716583726'),
  28. ('2', 'Adele', 'Gilmore', 'F', 'Liverpool', '02716583926'),
  29. ('4', 'Geoffrey', 'Macdonald', 'M', 'Liverpool', '0572816754'),
  30. ('6', 'Daniel', 'Worsall', 'M', 'Blackpool', '07809321432'),
  31. ('7', 'Stephanie', 'Richard', 'F', 'Blackpool', '08091654781'),
  32. ('8', 'Stanley', 'Smith', 'M', 'Liverpool', '01472801321'),
  33. ('9', 'jonathan', 'black', 'M', 'Southport', '07724564536'),
  34. ('10', 'Joanne', 'Gorman', 'F', 'Manchester', '02495674267'),
  35. ('11', 'Bobby', 'Jenkins', 'M', 'London', '01446345366'),
  36. ('12', 'Craig', 'Davies', 'M', 'Leeds', '03543623235'),
  37. ('13', 'Liam', 'Berk', 'M', 'Swansea', '04356324677'),
  38. ('14', 'Max', 'Skeet', 'M', 'Southampton', '02356576563'),
  39. ('15', 'Ellie', 'Johnson', 'F', 'Lancashire', '06568345678'),
  40. ('16', 'Jasmine', 'Sargent', 'F', 'Ormskirk', '03534574433'),
  41. ('17', 'Helen', 'Johnson', 'F', 'Preston', '02357457434'),
  42. ('18', 'David', 'Shaw', 'M', 'Lancashire', '08279473908'),
  43. ('19', 'Thomas', 'Hales', 'M', 'Blackpool', '01254636347'),
  44. ('20', 'Sam', 'Rawsthorne', 'M', 'Liverpool', '06433457344');
  45.  
  46. INSERT INTO `company` (`id`, `name`, `logo`, `location`) VALUES
  47. ('3', 'Companyname', 'path_to_logo', 'Location'),
  48. ('5', 'Companyname', 'path_to_logo', 'Location');
  49.  
  50. INSERT INTO `recruiter` (`id`, `company`) VALUES
  51. ('1', '3'),
  52. ('2', '3'),
  53. ('6', '5');
  54.  
  55. INSERT INTO `jobseeker` (`id`, `cv`, `dob`, `description`) VALUES
  56. ('4', 'path_to_cv', '1998-08-12', 'This is the description'),
  57. ('0', 'path_to_cv', '1992-01-15', 'Different description'),
  58. ('7', 'path_to_cv', '1985-05-01', 'Different description'),
  59. ('8', 'path_to_cv', '1997-04-29', 'Different description');
  60.  
  61. INSERT INTO `job` (`id`, `title`, `description`, `location`, `pictures`, `category`, `recruiter`) VALUES
  62. ('0', 'JobTitle', 'description', 'location', 'path_to_pictures', 'Bartender', '1'),
  63. ('1', 'AnotherJob', 'description', 'location', 'path_to_pictures', 'Unknown', '2'),
  64. ('2', 'AnotherJob', 'description', 'location', 'path_to_pictures', 'Accountant', '6')
  65.  
  66.  
  67. INSERT INTO `posting` (`id`, `title`, `description`, `location`, `pictures`, `salary`, `time_created`, `hours`, `interview_type`, `job`) VALUES
  68. ('0', 'PostingTitle', 'description', 'Location', 'path_to_pictures', '10000', '2018-11-22 00:00:00', '40', 'Unknown', '1'),
  69. ('1', 'DifferentPosting', 'description', 'Location', 'path_to_pictures', '40000', '2018-11-23 00:00:00', '30', 'Unknown', '0'),
  70. ('2', 'DifferentPosting', 'description', 'Location', 'path_to_pictures', '65000', '2018-12-13 00:00:00', '36', 'video call', '2');
  71.  
  72.  
  73.  
  74. INSERT INTO `card` (`id`, `time_created`, `days`, `posting`, `recruiter`) VALUES
  75. ('0', '2018-11-22 00:00:00', '8', '1', '1'),
  76. ('1', '2018-11-21 00:00:00', '7', '0', '2'),
  77. ('2', '2018-12-13 00:00:00', '13' '2', '6');
  78.  
  79. INSERT INTO `employment` (`id`, `date_start`, `date_end`, `position`, `description`, `company`, `jobseeker`) VALUES
  80. ('0', '2018-11-04', '2018-11-08', 'Manager', 'Description', '3', '0'),
  81. ('1', '2018-10-04', '2018-11-08', 'Worker', 'Description', '3', '4'),
  82. ('2', '2018-12-25', '2019-03-01', 'Accountant', 'Description', '5', '7');
  83.  
  84. INSERT INTO `match` (`id`, `time_matched`, `interview_description`, `interview_date`, `interview_location`, `time_hired`, `time_disqualified`, `employment`, `jobseeker`, `card`) VALUES
  85. ('0', '2018-11-21 00:00:00', 'None', '2018-11-22 00:00:00', 'Location', '2018-11-22 07:00:00', NULL, '0', '0', '0'),
  86. ('1', '2018-11-21 00:00:01', 'None', '2018-11-22 01:00:00', 'Location', NULL, '2018-11-22 07:00:00', '0', '4', '1'),
  87. ('2', '2018-12-15' 00:00:12', 'None', '2018-12-16 08:00:00', 'Location', '2018-12-14 05:00:00', NULL, '2', '7','2');
  88.  
  89. INSERT INTO `message` (`id`, `is_delivered`, `is_read`, `time_sent`, `user`, `match`, `content`) VALUES
  90. ('0', b'1', b'0', '2018-11-22 01:00:00', '0', '0', 'Hi'),
  91. ('1', b'1, b'1', '2018-12-14 05:01:35', '7', '2', 'Good morning.');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement