How to generate linibase shift with insert

I communicate with the Liquibase library and I like to simulate working with an existing database. Therefore, from the command line, I manage to generate a change log, and I was wondering if it is possible to generate insert statements for data that contains tables?

thanks for this.

+4
source share
1 answer

Yes. Use the -diffTypes = "data" parameter to output CSV files that reference the generated change log and populate your database.

+6
source

Source: https://habr.com/ru/post/1316295/


All Articles