Blank initial import :

I’ve made this commande to make a initial changelog file :

  1. liquibase --driver=org.postgresql.Driver \
  2.       --classpath=postgresql-9.2-1002.jdbc4.jar \
  3.       --changeLogFile=db.changelog.xml \
  4.       --url="jdbc:postgresql://10.92.252.44:5433/bagad" \
  5.       --username=postgres \
  6.       --password=postgres \
  7.       generateChangeLog
Here is the result of the file :
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
and here is the result of the cmd screen :
  1. INFO 12/12/12 08:57:liquibase: Reading tables for postgres @ jdbc:postgresql://1
  2. 0.92.252.44:5433/bagad ...
  3. INFO 12/12/12 08:57:liquibase: Reading views for postgres @ jdbc:postgresql://10
  4. .92.252.44:5433/bagad ...
  5. INFO 12/12/12 08:57:liquibase: Reading foreign keys for postgres @ jdbc:postgres
  6. ql://10.92.252.44:5433/bagad ...
  7. INFO 12/12/12 08:57:liquibase: Reading primary keys for postgres @ jdbc:postgres
  8. ql://10.92.252.44:5433/bagad ...
  9. INFO 12/12/12 08:57:liquibase: Reading columns for postgres @ jdbc:postgresql://
  10. 10.92.252.44:5433/bagad ...
  11. INFO 12/12/12 08:57:liquibase: Reading unique constraints for postgres @ jdbc:po
  12. stgresql://10.92.252.44:5433/bagad ...
  13. INFO 12/12/12 08:57:liquibase: Reading indexes for postgres @ jdbc:postgresql://
  14. 10.92.252.44:5433/bagad ...
  15. INFO 12/12/12 08:57:liquibase: Reading sequences for postgres @ jdbc:postgresql:
  16. //10.92.252.44:5433/bagad ...
  17. INFO 12/12/12 08:57:liquibase: db.changelog.xml does not exist, creating
  18. Liquibase 'generateChangeLog' Successful
And my db is not empty


If you have any idea 

thanks

Bussiere