I'm developing a website with nodejs and mysql.
My client has got an sql server database in their buildings. The sql server DB is the main data source but it can not be used as the website's data source.
So I have to regularly sync the two.
Any changes made by my client to their mssql db will be replicated to the website's mysql db, and changes to the mysql db (from users) must be replicated to the mssql server.
They're willing to accept a 30 minutes gap between syncs.
I'm using sequelize and I'm wondering if it's possible to use migration strategies for that so any input will be greatly appreciated.