How to override Axon JPA entity to persist with custom created tables and column names?

We are following table name and column name specifications with table number and description column names suffix with X and date time stamp columns suffix with S.

Can i override the tables and column names which is getting created by default?

Hi Arun,

yes, you can customize it all you want. One way is by using the JdbcStorageEngine and providing it with a customized schema. Alternatively, you can use an orm.xml configuration file to provide overrides of the configuration provided in the annotations. The reference guide has a little example orm.xml which shows how to change the sequence generator: https://docs.axoniq.io/reference-guide/appendices/rdbms-tuning#auto-increments-and-sequences

Cheers,