From 1c6b1975c5fdffcb080c63a32ef978328ad2f2ee Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 25 Mar 2020 14:04:48 -0400 Subject: [PATCH] Update CONTRIBUTING.md with Sqlite info --- .github/CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 534af7d20c..89c61849e6 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -155,6 +155,8 @@ Whenever you make a change to a model schema that must be reflected in the datab 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 SL --context SqliteDatabaseContext` 1. Fix compiler warnings in the generated files. Ensure all classes are in the Tgstation.Server.Host.Models.Migrations namespace. 1. Run the server in both configurations to ensure the migrations work.