Remove or ommit proyect name and underscore from entityes name

Hi!
how remove(i think not possible) or ommit the project name and underscore from entity names.

I don’t like this format:
@Table(name = “PORTEAGRO_CAMP_AGRI_VARIEDAD”)
@Entity(name = “porteagro_CampAgriVariedad”)

It’s better for me this:
@Table(name = “CAMPAGRIVARIEDAD”)
@Entity(name = “CampAgriVariedad”)

Now I’m make changes manually, removing them.
Thank!

Hi,
Yes, Studio adds prefixes to: entity names, table names and Spring bean names.
Currently it is not possible to turn off this behavior. We can implement an option in the future but I give no promises.

You can change table name and entity name manually as you like. CUBA and Studio would work normally with such entities.

1 Like

Ok, thank!