Skip to content

Commit

Permalink
Fixed a typo and added the new column to the permissions list
Browse files Browse the repository at this point in the history
  • Loading branch information
cohansen committed Jun 6, 2024
1 parent b62806c commit 2d17e09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ select_permissions:
insert_permissions:
- role: aerie_admin
permission:
columns: [mission, name, version, description, jar_id]
columns: [mission, name, version, description, jar_id, default_view_id]
check: {}
set:
owner: "x-hasura-user-id"
update_permissions:
- role: aerie_admin
permission:
columns: [mission, name, version, description, owner]
columns: [mission, name, version, description, owner, default_view_id]
filter: {}
delete_permissions:
- role: aerie_admin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ comment on column merlin.mission_model.created_at is e''
comment on column merlin.mission_model.description is e''
'A human-meaningful description of the mission model.';
comment on column merlin.mission_model.default_view_id is e''
'The ID of an option default view for the mission model.';
'The ID of an optional default view for the mission model.';

create trigger increment_revision_mission_model_update
before update on merlin.mission_model
Expand Down

0 comments on commit 2d17e09

Please sign in to comment.