Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed granting scripts #225

Merged
merged 2 commits into from
Mar 11, 2017
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
8 changes: 4 additions & 4 deletions source/create_synonyms_and_grants_for_public.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ grant execute on ut_teamcity_reporter to public;
grant execute on ut_xunit_reporter to public;
grant execute on ut_documentation_reporter to public;
grant execute on ut_coverage_html_reporter to public;
grant execute on ut_coverage_xml_reporter to public;
grant execute on ut_coverage_json_reporter to public;
grant execute on ut_coverage_sonar_reporter to public;
grant execute on ut_coveralls_reporter to public;
grant execute on ut_reporters to public;
grant execute on ut_varchar2_list to public;
grant execute on ut_reporter_base to public;
Expand Down Expand Up @@ -81,8 +81,8 @@ create public synonym ut_teamcity_reporter for ut_teamcity_reporter;
create public synonym ut_xunit_reporter for ut_xunit_reporter;
create public synonym ut_documentation_reporter for ut_documentation_reporter;
create public synonym ut_coverage_html_reporter for ut_coverage_html_reporter;
create public synonym ut_coverage_xml_reporter for ut_coverage_xml_reporter;
create public synonym ut_coverage_json_reporter for ut_coverage_json_reporter;
create public synonym ut_coverage_sonar_reporter for ut_coverage_sonar_reporter;
create public synonym ut_coveralls_reporter for ut_coveralls_reporter;
create public synonym ut_reporters for ut_reporters;
create public synonym ut_varchar2_list for ut_varchar2_list;
create public synonym ut_reporter_base for ut_reporter_base;
Expand Down
8 changes: 4 additions & 4 deletions source/create_synonyms_and_grants_for_user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ grant execute on ut_teamcity_reporter to &ut3_user;
grant execute on ut_xunit_reporter to &ut3_user;
grant execute on ut_documentation_reporter to &ut3_user;
grant execute on ut_coverage_html_reporter to &ut3_user;
grant execute on ut_coverage_xml_reporter to &ut3_user;
grant execute on ut_coverage_json_reporter to &ut3_user;
grant execute on ut_coverage_sonar_reporter to &ut3_user;
grant execute on ut_coveralls_reporter to &ut3_user;
grant execute on ut_reporters to &ut3_user;
grant execute on ut_varchar2_list to &ut3_user;
grant execute on ut_reporter_base to &ut3_user;
Expand Down Expand Up @@ -82,8 +82,8 @@ create or replace synonym &ut3_user .ut_teamcity_reporter for ut_teamcity_report
create or replace synonym &ut3_user .ut_xunit_reporter for ut_xunit_reporter;
create or replace synonym &ut3_user .ut_documentation_reporter for ut_documentation_reporter;
create or replace synonym &ut3_user .ut_coverage_html_reporter for ut_coverage_html_reporter;
create or replace synonym &ut3_user .ut_coverage_xml_reporter for ut_coverage_xml_reporter;
create or replace synonym &ut3_user .ut_coverage_json_reporter for ut_coverage_json_reporter;
create or replace synonym &ut3_user .ut_coverage_sonar_reporter for ut_coverage_sonar_reporter;
create or replace synonym &ut3_user .ut_coveralls_reporter for ut_coveralls_reporter;
create or replace synonym &ut3_user .ut_reporters for ut_reporters;
create or replace synonym &ut3_user .ut_varchar2_list for ut_varchar2_list;
create or replace synonym &ut3_user .ut_reporter_base for ut_reporter_base;
Expand Down