From 54ce78d0885accf6b8e3a6b124f489ffe73953ce Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 29 Jun 2020 18:05:50 -0400 Subject: [PATCH] Fix CONTRIBUTING.md slightly --- .github/CONTRIBUTING.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 92e10d433e..ea21e217d9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -182,11 +182,9 @@ We have a script to do this. 1. Make the code changes for your model. 1. Open a command prompt in the `/src/Tgstation.Server.Host` directory. 1. Ensure you have the EntityFrameworkCore migration tools installed with `dotnet tool restore`. -1. Configure your appsettings.Development.json to connect to a valid SQL Server database. 1. Run `dotnet ef migrations add MS --context SqlServerDatabaseContext` -1. Configure your appsettings.Development.json to connect to a valid MySQL/MariaDB database. 1. Run `dotnet ef migrations add MY --context MySqlDatabaseContext` -1. Configure your appsettings.Development.json to connect to a valid SQLite3 database. +1. Run `dotnet ef migrations add PG --context PostgresSqlDatabaseContext` 1. Run `dotnet ef migrations add SL --context SqliteDatabaseContext`. 1. Follow the above steps.