Skip to content

Commit

Permalink
spelling correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rimashah25 committed Sep 6, 2023
1 parent 663f33b commit eab397b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions traffic_ops/app/db/seeds.sql
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ SELECT id, perm FROM public.role
CROSS JOIN (
VALUES ('DNS-SEC:READ'), ('DNS-SEC:DELETE')
) AS perms(perm)
WHRER "name" = 'operations'
WHERE "name" = 'operations'
ON CONFLICT DO NOTHING;

INSERT INTO public.role_capability (role_id, cap_name)
Expand All @@ -117,7 +117,7 @@ FROM public.role
CROSS JOIN (
VALUES ('DELIVERY-SERVICE-SAFE:UPDATE')
) AS perms(perm)
WHRER name in ('operations', 'read-only', 'portal', 'federation', 'steering')
WHERE name in ('operations', 'read-only', 'portal', 'federation', 'steering')
ON CONFLICT DO NOTHING;

-- Using role 'read-only'
Expand Down

0 comments on commit eab397b

Please sign in to comment.