Liquibase Inheritance creation

Hello

I am new to Liquibase and am using it in one of my projects. Is there a possibility of creating inheritance structure in Liquibase. I would like to create two tables (one parent , one child). I am currently using postgresql database. How can I implement the inheritance such that the child inherits all the columns from the parent table. Is there a specific syntax to declare inheritance in Liquibase (XML syntax). Any help would be greatly appreciated.

Thanks

Shashank

This is similar to some other questions on StackOverflow:

http://stackoverflow.com/questions/25840467/liquibase-common-columns

http://stackoverflow.com/questions/25228076/how-to-define-in-liquibase-a-set-of-default-columns-def-pks-def-indexes-def

http://stackoverflow.com/questions/31569834/can-i-define-a-set-of-columns-to-be-included-into-each-createtable-in-liquibase?lq=1

Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/

Also, this forum is more for people changing liquibase itself rather than how to use Liquibase.

Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/

Thanks for the information Steve. I did not get much answers regarding the inheritance in liquibase from the links you provided. Would it be helpful and easier to implement inheritance using hibernate concepts.