diff --git a/appsettings.json b/appsettings.json index de251d1..416bd56 100644 --- a/appsettings.json +++ b/appsettings.json @@ -18,7 +18,7 @@ "Webhooks": [ { "uacID": "9a94855a-e5a2-43b5-8420-ce670472ce95", - "Trigger": "test", + "Trigger": "!test", "Description": "test", "Uri": "http://localhost", "Method": "POST", diff --git a/devutils.sh b/devutils.sh index d0f1748..79dc095 100755 --- a/devutils.sh +++ b/devutils.sh @@ -19,6 +19,14 @@ case "$1" in dotnet ef migrations add "$2" dotnet ef database update --connection "$connnectionstr" ;; + "remove-migration") + echo "ef migrations will tell you you can use dotnet ef migrations remove." + echo "" + echo "LIES." + echo "" + echo "it doesn't have a way to specify the connection string. can't be done." + echo "edit the db the hard way." + ;; "dbupdate") dotnet ef database update --connection "$connnectionstr"