--diffTypes issue

Try by omitting -diffTypes.

The doc says it all: http://www.liquibase.org/manual/diff

Note: This only works with the “generateChangeLog” command, not the “diff” or “diffChangeLog” commands. 



Maybe you could implement it and issue a pull request to the github repo?



It sure works but the fact is I need the option…

My database is quite huge and I’d like to omit foreign keys, views and sequences (The diff being too long right now).

Another solution would be to omit some table prefixes (like wiki_ tables) but I can’t find any way to perform this…

Well… You’re right. I’ve been reading that page like a million times and still I was able to skip these two lines. My bad.

Thanks for the hint, I’ll think about the implementation and request.

Hi all,


I’m new to liquibase and I’m trying to compare my development/production databases (distant) from my local environment using diffChangeLog (from the command line). Which works just fine but for the --difffTypes parameter… Could anybody tell me what’s wrong ?

java -jar liquibase.jar 

–driver=com.mysql.jdbc.Driver 

–classpath=mysql-connector-java-5.1.13-bin.jar 

–changeLogFile=changelog.xml 

–url=jdbc:mysql://testing/mydatabase

–username ####

–password=####

diffChangeLog 

–diffTypes=tables 

–referenceUrl=jdbc:mysql://production/mydatabase

–referenceUsername ####

–referencePassword=####