Home:ALL Converter>Liquibase case insensitivity in postgresql

Liquibase case insensitivity in postgresql

Ask Time:2014-10-07T20:13:59         Author:epapath

Json Formatter

Based on this Making case insensitive table with liquibase in postgres

The postgresql creates tables

create table "Users" ("userId" integer unique not null, "userFirstName" varchar(50) not null,"userLastName" varchar(50) not null);

instead of

create table Users (userId integer unique not null, userFirstName varchar(50) not null,userLastName varchar(50) not null);

This causes issues with the jpa.

How can I force the liquibase maven plugin use this sub class in order to get the insensitivity with liquibase in postgres?

Author:epapath,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/26235744/liquibase-case-insensitivity-in-postgresql
yy