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.

34 lines
608 B

1 month ago
  1. INSERT INTO `roles` (
  2. `id`,
  3. `name`,
  4. `guard_name`,
  5. `created_at`,
  6. `updated_at`
  7. )
  8. VALUES (
  9. 1,
  10. 'super_admin',
  11. 'api',
  12. '2023-08-11 11:57:33',
  13. '2023-08-11 11:57:33'
  14. ),
  15. (
  16. 2,
  17. 'store_owner',
  18. 'api',
  19. '2023-08-11 11:57:33',
  20. '2023-08-11 11:57:33'
  21. ),
  22. (
  23. 3,
  24. 'staff',
  25. 'api',
  26. '2023-08-11 11:57:33',
  27. '2023-08-11 11:57:33'
  28. ),
  29. (
  30. 4,
  31. 'customer',
  32. 'api',
  33. '2023-08-11 11:57:33',
  34. '2023-08-11 11:57:33'
  35. );