Hi
While I am migrating my project created in CUBA platform to JMIX, I want to replace the $ sign by _ as “_” is used by default in JMIX.
from
@JmixEntity
@Table(name = "ERP_ACCOUNTS_BALANCE")
@Entity(name = "erp$AccountsBalance")
public class AccountsBalance extends StandardTenantEntity {
to
@JmixEntity
@Table(name = "ERP_ACCOUNTS_BALANCE")
@Entity(name = "erp_AccountsBalance")
public class AccountsBalance extends StandardTenantEntity {
Can I just replace it in the Entities and codes or there is more to be taken care off? Is there any impact to the application database for this change?