在Azure上发布后如何管理迁移

I'm using a web app asp.net (.net framework) identity framework published on Azure. I change in web.config file the connectionString with Azure string and all works fine.

I Made a simple change in a context and when I send the get request postMan returns me this error:

The model backing the 'MYCONTEXTNAME' context has changed since the database was created. Consider using Code First Migrations to update the database.

When I was working locally I use the commands: Add-Migrations + Update-Database to update the table structure, but in Azure what I have to do?

如何解决此问题?

谢谢

G。