The first of my many migration scripts creates the schema and tablespace which the rest of my migration scripts create tables in, perform inserts in, etc. This is done so I can drop the entire schema and start from scratch with flyway. The cmd flyway migrate command connects as "SYS AS SYSDBA", validates my migration files and then gives me the following error:
ERROR: Found non-empty schema "SYS" without without metadata table! Use baseline() or set baselineOnMigrate to true to initialize the metadata table.
Setting baselineOnMigrate to true in flyway.conf does not change anything.
Is what I am attempting to do possible? Is there a reason I should not be doing this?