spring-liquibase-template/db-patcher/build/resources/main/db/changelog/scripts/20220323-02-grant_rights_to...

19 lines
754 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.8.xsd">
<changeSet id="20220323-03-grant_rights_to_payout_file_content.xml" author="vboyko">
<sql dbms="oracle">
grant select, insert, update on fd_payout_record to mpp_app;
</sql>
<rollback>
<sql dbms="oracle">
revoke select, insert, update on fd_payout_record from mpp_app;
</sql>
</rollback>
</changeSet>
</databaseChangeLog>