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