How to update database schema in application

I made a MySQL table, then I made a application.
But after some hours of work I realised that I have to add some new fields and change some existing ones.
How can I update my app to “see” the changes??

Re: How to update database schema in application

If you create a form app, you can synchronize your app. Go to Application->Synchronize Table.
Then go in Positioning Fields, select the fields you want to appear in the form.
But If you create a grid app, in SQL Statement of the app, you can add the field in the SQL.
And do the same, Go to Positioning Fields and select the field to appear in the app.

regards,

Re: How to update database schema in application

That helped,
thank you!