MySql Equivalent to Sql Server Database Project

I am trying to find a way to source control mySql database versions. Previously, while working with SQL Server, I used the project project "SQL Server Database Project" in Visual Studio.

Is there a way to get this type of project to work with MySql.Net Connector?

If not, are there other ways to create a MySql database project in .NET?

UPDATE:

I found dbForge that has database projects in the Professional edition. He does everything that I need. Allows us to move the diagram to the original control, allows us to create scripts for updating to a new version or returning to an old version, etc. The user interface is an almost exact duplicate of the visual studio database design.

I will leave this question open anyway, although in case anyone knows of a free alternative.

+4
source share
2 answers

I ended up with dbForge. It is not free, but it works very well.

+1
source

Have you tried Skeema? If you are familiar with Microsoft Dacpac for SQL Server, you will appreciate this tool.

https://github.com/skeema/skeema

You need to run two commands.

Dke Skema → To generate differences. click on the button → make changes.

Skima is well documented.

0
source

Source: https://habr.com/ru/post/1534315/


All Articles