Hi, I need to create a new table to store data in the cloudstack DB. I followed existing examples to: - add a new VO class, with @Entity and @Table(name = “new_table_name") - add a new Dao interface - add a new DaoImpl class for the interface - update spring context (of my network plugin) with a new bean id for the new DaoImpl class
I was expecting with the change and a reinstall of my cloudstack-management service (even doing cloudstack-setup-databases again), a new table would be created. However, this is not happening. Is there some step I missed? Thanks, KC