I am working on Fineract. The issue I am facing is when I change in m_fund
Entity class to add a new column it compiles without error but it does not
create new column in MySQL database. one more strange thing which I came to
know that is when I try to monitor the SQL logs by enabling it in the
application.properties when it starts compiling it remove my lines which
enables the SQL logs it feels like it is rewriting my changes. I am stuck at
this stage I want to work on this project. Is there anyway u can help me on
this? just guide me a little so that I continue my exploration on this cool
project.
1: what do I want to do?
I want to add a new column and make new tables in fineract MySQL default.
2: what is the issue?
A new column is not visible in MySQL "m_fund" table even there is not an
error
When I hit API /funds it says you don't have a "funds_type" column in the
database. this is after when I make Column in Entity class using @Column and
private String...
Thank you