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.
35 lines
608 B
35 lines
608 B
INSERT INTO `roles` (
|
|
`id`,
|
|
`name`,
|
|
`guard_name`,
|
|
`created_at`,
|
|
`updated_at`
|
|
)
|
|
VALUES (
|
|
1,
|
|
'super_admin',
|
|
'api',
|
|
'2023-08-11 11:57:33',
|
|
'2023-08-11 11:57:33'
|
|
),
|
|
(
|
|
2,
|
|
'store_owner',
|
|
'api',
|
|
'2023-08-11 11:57:33',
|
|
'2023-08-11 11:57:33'
|
|
),
|
|
(
|
|
3,
|
|
'staff',
|
|
'api',
|
|
'2023-08-11 11:57:33',
|
|
'2023-08-11 11:57:33'
|
|
),
|
|
(
|
|
4,
|
|
'customer',
|
|
'api',
|
|
'2023-08-11 11:57:33',
|
|
'2023-08-11 11:57:33'
|
|
);
|