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
614 B
35 lines
614 B
INSERT INTO `permissions` (
|
|
`id`,
|
|
`name`,
|
|
`guard_name`,
|
|
`created_at`,
|
|
`updated_at`
|
|
)
|
|
VALUES (
|
|
1,
|
|
'super_admin',
|
|
'api',
|
|
'2021-06-27 04:13:00',
|
|
'2021-06-27 04:13:00'
|
|
),
|
|
(
|
|
2,
|
|
'customer',
|
|
'api',
|
|
'2021-06-27 04:13:00',
|
|
'2021-06-27 04:13:00'
|
|
),
|
|
(
|
|
3,
|
|
'store_owner',
|
|
'api',
|
|
'2021-06-27 04:13:00',
|
|
'2021-06-27 04:13:00'
|
|
),
|
|
(
|
|
4,
|
|
'staff',
|
|
'api',
|
|
'2021-06-27 04:13:00',
|
|
'2021-06-27 04:13:00'
|
|
);
|