changeLogs-postDeploy/subscription.xml (16 lines of code) (raw):

<?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" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.5.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd"> <changeSet author="registry owner" id="refresh subscription operational_sub" runAlways="true" runInTransaction="false"> <sql dbms="postgresql" endDelimiter=";" splitStatements="true" stripComments="true"> ALTER SUBSCRIPTION operational_sub REFRESH PUBLICATION; <comment>Refresh subscription</comment> </sql> <rollback> </rollback> </changeSet> </databaseChangeLog>