문제

I'm using Liquibase 3.1.1 to create tables in PostgreSQL 9.1. For example:

<changeSet id="1" author="bob">
    <createTable tableName="BATCHES">
        <!-- .. -- >
    </createTable>
</changeSet>

However, the table gets created with a lowercase name:

# select * from "BATCHES";
ERROR:  relation "BATCHES" does not exist

Is there any way to have Liquibase generate DDL that preserves the case of the table (and column etc) names that I specify in the change log?

도움이 되었습니까?

해결책

You can use the objectQuotingStrategy="QUOTE_ALL_OBJECTS" attribute on your changeSet attribute or on the databaseChangeLog root element to override the default logic of "only quote objects that have to be"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top