Making case insensitive table with liquibase in postgres
- by kospiotr
Does anybady know how to make case insensitive table with liquibase. I'm using the newest postgres.
For example liquibase creates table in that way:
create table "Users" (
"userId" integer unique not null,
"userFirstName" varchar(50) not null,
"userLastName" varchar(50) not null
);
but how to make liquibase to create table in that way:
create table Users (
userId integer unique not null,
userFirstName varchar(50) not null,
userLastName varchar(50) not null
);