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
614 B

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