I have migrated the Database from Oracle to Postgres. In Oracle, we`ve used tablespaces in the liquibase scripts, but in my new Postgres Database I do not want to use these tablespaces anymore. Is the a proper way to apply these scripts over a new environment that does not have any tablespaces (ignore that property)?
I`m running liquibase during Spring Boot start-up phase.
Liquibase changesets have a dedicated
dbmsattribute to distinct the changesets incompatible between the different DB management systems:So, you would need to use
dbms="oracle"for Oracle-specific changesets, anddbms="postgresql"for Postgres.