Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REVOKE UPDATE (template_id) ON system_patch FROM manager;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GRANT UPDATE (template_id) ON system_patch TO manager;
5 changes: 3 additions & 2 deletions database_admin/schema/create_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS schema_migrations


INSERT INTO schema_migrations
VALUES (143, false);
VALUES (144, false);

-- ---------------------------------------------------------------------------
-- Functions
Expand Down Expand Up @@ -1061,7 +1061,8 @@ GRANT SELECT, UPDATE (installable_advisory_count_cache,
applicable_advisory_count_cache,
applicable_advisory_enh_count_cache,
applicable_advisory_bug_count_cache,
applicable_advisory_sec_count_cache) ON system_patch TO manager;
applicable_advisory_sec_count_cache,
template_id) ON system_patch TO manager;
GRANT SELECT, UPDATE, DELETE ON system_patch to vmaas_sync; -- vmaas_sync performs system culling

-- system_platform
Expand Down
Loading