Connect Sugar with DataBase

Hello, 

Following few weeks of test i'll transfer my on premise server to a cloud server. 

The application has been installed and tested on cloud few weeks ago with a database from December 2019. 

In order to update the database, is it enough to 

1 - Dump the database from the production instance 

Cmd : mysqldump -u user -p database_name > file.sql 

2 - Re-import the data base on the cloud server  

Cmd : mysql -u user -p database_name < file.sql

i've run the process once already but no information have been updated on my application. 

Thank you all