I m new to liquibase and tried to generate a changelog from an existing database my database contains 3 schemas when I execute the following command :
    Liquibase --driver=org.postgresql.Driver 
              --classpath=postgresqljdbc4.jar 
              --changeLogFile=db.changelog.xml 
              --url="jdbc:postgresql://localhost:5432/my_bd" 
              --username=username 
              --password=password 
              generateChangeLog
the db.changelog.xml is generated but it retrieve only one schemas information
How to get all the schemas information
note that every schema contains tables
 
    