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?