Skip to content

v4.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Mar 20:49
· 17 commits to main since this release

What's Changed

Oracle Database Migration Notes

If using shared database run:

GRANT SELECT ON PD_OWNER.ASSIGNMENTS TO PRESENTER_OWNER;

create or replace view presenter_owner.assignments as
(
select USER_ID, START_DATE, END_DATE from pd_owner.assignments
);

create or replace view presenter_owner.staff as
(
select STAFF_ID, USERNAME from support.staff
);

Otherwise, in a standalone env just create empty tables of the same name and the elog code with fallback to using user presenter

Full Changelog: v4.6.1...v4.7.0