Making case insensitive table with liquibase in postgres
Posted
by kospiotr
on Stack Overflow
See other posts from Stack Overflow
or by kospiotr
Published on 2010-06-08T09:11:09Z
Indexed on
2010/06/08
14:22 UTC
Read the original article
Hit count: 216
liquibase
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 );
© Stack Overflow or respective owner