when I tried to create a column with the data type "TIMESTAMP WITHOUT TIME ZONE" in postgresql it is always created in the database as "TIMESTAMP WITH TIME ZONE", so are there any workarounds or solutions to this problem?
<addColumn tableName="myTable"> <column name="date_added" type="TIMESTAMP WITHOUT TIME ZONE"> <constraints nullable="false" /> </column> </addColumn>
btw, this question is on jira: http://liquibase.jira.com/browse/CORE-877
postgresql liquibase
Mahmoud saleh
source share