Skip to content

LucasDiogo96/Migration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Migration

Purpouse

The migration project has the purpose of managing the changes made to the database.

Type of application

Console application.

Built With

Creating a migration

1 - Open the command line inside the root of the project

2 - Execute the following command:

.\Migration.bat new {MigrationName}

3 - This command will generate a file in the folder Migration.Sample >> Migrations.

4 - Add file to the solution.

5 - Add the SQL to be executed.

How to Run

To run the application you can use the following command in the prompt command inside of the project folder.

1 - Go to the directory where the api project is.

cd src\Migration.Sample

2 - After this, restore the packages.

dotnet restore

3 - Set the SQL Server connection string in the env variables

 CONN_STRING  = {{Azure app configuration connection string}}

4 - Finally.

dotnet run