You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.2 KiB

1 month ago
  1. INSERT INTO `users` (
  2. `id`,
  3. `name`,
  4. `email`,
  5. `email_verified_at`,
  6. `password`,
  7. `remember_token`,
  8. `created_at`,
  9. `updated_at`,
  10. `is_active`,
  11. `shop_id`
  12. )
  13. VALUES (
  14. 1,
  15. 'Shop Owner',
  16. 'vendor@demo.com',
  17. NULL,
  18. '$2y$10$5l2e.NYkxAHFeZWMOqvFoew6GjT0/0bB42wukw3I1l.trTbN951kW',
  19. NULL,
  20. '2021-10-09 16:39:49',
  21. '2021-11-25 06:21:22',
  22. 1,
  23. NULL
  24. ),
  25. (
  26. 3,
  27. 'Customer',
  28. 'customer@demo.com',
  29. NULL,
  30. '$2y$10$DeU1iilF9mg/BBqypizpZ.ysFjuIoHHIycxHmZrAvqTasTErs3P8G',
  31. NULL,
  32. '2021-11-25 06:22:18',
  33. '2021-11-25 06:22:18',
  34. 1,
  35. NULL
  36. ),
  37. (
  38. 4,
  39. 'customer2',
  40. 'customer2@demo.com',
  41. NULL,
  42. '$2y$10$UVs.WftC2iIdLQsHz9Tbdu7OmUXG3P7wyjHvJqCunyJ7JE8ekyXr.',
  43. NULL,
  44. '2022-03-17 14:15:08',
  45. '2022-03-17 14:15:08',
  46. 1,
  47. NULL
  48. ),
  49. (
  50. 5,
  51. 'customer3',
  52. 'customer3@demo.com',
  53. NULL,
  54. '$2y$10$UVs.WftC2iIdLQsHz9Tbdu7OmUXG3P7wyjHvJqCunyJ7JE8ekyXr.',
  55. NULL,
  56. '2022-03-17 16:25:39',
  57. '2022-03-17 16:25:39',
  58. 1,
  59. NULL
  60. );