From 1de6cdb8dc7272d1efbcd5b3f17ae01274fa80b5 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sat, 21 Sep 2024 20:12:09 +0000 Subject: [PATCH] dev: updatd migration script as mysql no longer exists --- migrate.ps1 | 1 - remove-migration.ps1 | 1 - 2 files changed, 2 deletions(-) diff --git a/migrate.ps1 b/migrate.ps1 index 55b3d8592..6b70d2a5f 100644 --- a/migrate.ps1 +++ b/migrate.ps1 @@ -5,6 +5,5 @@ else { $migrationName = $args[0] dotnet ef migrations add $migrationName -c SqliteContext -p src/NadekoBot/NadekoBot.csproj dotnet ef migrations add $migrationName -c PostgreSqlContext -p src/NadekoBot/NadekoBot.csproj - dotnet ef migrations add $migrationName -c MysqlContext -p src/NadekoBot/NadekoBot.csproj } diff --git a/remove-migration.ps1 b/remove-migration.ps1 index a53a1c720..a372bca4a 100644 --- a/remove-migration.ps1 +++ b/remove-migration.ps1 @@ -1,4 +1,3 @@ dotnet ef migrations remove -c SqliteContext -f -p src/NadekoBot/NadekoBot.csproj dotnet ef migrations remove -c PostgreSqlContext -f -p src/NadekoBot/NadekoBot.csproj -dotnet ef migrations remove -c MysqlContext -f -p src/NadekoBot/NadekoBot.csproj