Last active
August 25, 2021 05:31
-
-
Save luanvuhlu/515c080438fb773b9368d638b937d79a to your computer and use it in GitHub Desktop.
liquibase generateChangeLog https://docs.liquibase.com/commands/community/generatechangelog.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -v <folder-to-save-sql>:/liquibase/changelog liquibase/liquibase \ | |
--driver=<jdbc-driver> --url=<jdbc-url> \ | |
--changeLogFile=“/liquibase/changelog/changelog.oracle.sql” \ | |
--diffTypes=“catalog,tables,functions,views,columns,indexes,foreignkeys,primarykeys, | |
uniqueconstraints,data,storedprocedure,triggers,sequences” \ | |
--username=<user> \ | |
--password=<pass> \ | |
generateChangeLog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment