Skip to content

Instantly share code, notes, and snippets.

@sonOfRa
Created December 4, 2018 15:51
Show Gist options
  • Save sonOfRa/63dbd1a0190ccdbf1cb0e08e72324a17 to your computer and use it in GitHub Desktop.
Save sonOfRa/63dbd1a0190ccdbf1cb0e08e72324a17 to your computer and use it in GitHub Desktop.
<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-3.1.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<changeSet id="3" author="Simon Levermann" dbms="mysql">
<renameTable oldTableName="Accepted_Feedback" newTableName="accepted_feedback"/>
<renameTable oldTableName="Feedback" newTableName="feedback"/>
<renameTable oldTableName="Feedback_Item" newTableName="feedback_item"/>
<renameTable oldTableName="Feedback_Topic" newTableName="feedback_topic"/>
</changeSet>
</databaseChangeLog>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment