Create column of type double precision[] with liquibase
问题 How to create column of type double precision[] (array of doubles) with liquibase in postgresql database? <changeSet id="add t_name table"> <createTable tableName="t_name"> ... <column name="doubleArray" type="???"/> ... </createTable> </changeSet> Google didn't help, please, if someone knows a solution, I will be very appreciative. 回答1: I finally found the answer with help of my colleague. It seems that liquibase don't know such types, so we need to modify sql query manually: <createTable