Quantcast
Channel: Liquibase Forums
Viewing all articles
Browse latest Browse all 1169

How does Liquibase handle Oracle Tables and columns that are "quoted" ?

$
0
0
I have several tables in my Oracle database that have quoted names and columns

CREATE TABLE "Example" 
("Col1" varchar2(50),
"col2" varchar2(50)
);

When liquibase generates the changelog, I lose the quotes and all my table/column names become uppercase.


CREATE TABLE EXAMPLE
(COL1 varchar2(50),
COL2  varchar2(50)
);


Any thoughts on how to "escape" the quotes, to re-generate the tables as originally created?


Viewing all articles
Browse latest Browse all 1169

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>