views:

30

answers:

1

Hello Good People!

i'm getting my hands around the liquibase library and i'ld like to mimic working with existing database. So from command line i manage to generate the changelog and i was wondering whether it's possible to generate insert statements for data insides the tables?

thanks for reading this.

+1  A: 

Yes. Use the --diffTypes="data" parameter output CSV files that are referenced from the generated changelog and will populate your database.

Nathan Voxland
thannks man, i'll look into it.
black sensei