I'm using activiti in my Spring Boot application: 'org.activiti:activiti-spring-boot-starter:7.1.0.M3.1'. By default, all activiti tables are contained in Spring Boot App database schema - Oracle 12.2 in my case. All activiti table names start with 'ACT_' prefix and all this tables and its indexes are in default 'USERS' tablespace.
Is it possible to specify additional prefix for activiti tables? For example I want to add 'FOO_' prefix to all activiti tables, then 'ACT_RE_MODEL' will be 'FOO_ACT_RE_MODEL'.
How can I specify tablespace 'INDX' to make activiti create indexes in different tablespace, not in 'USERS'?