How to generate liquibase changelog with insert statement?
I'm getting my hands on the Liquibase tool and I'd like to mimic working with an existing database. From the command line, I managed to generate the changelog. I was wondering whether it's possible to generate insert开发者_StackOverflow社区 statements for data insides the tables?
Yes. Use the --diffTypes="data" parameter output CSV files that are referenced from the generated changelog and will populate your database.
精彩评论