This commit is contained in:
adam 2025-07-01 01:12:28 -04:00
parent a4c2ff1ea4
commit f6b0a736cd
2 changed files with 9 additions and 1 deletions

View File

@ -18,7 +18,7 @@
"Webhooks": [ "Webhooks": [
{ {
"uacID": "9a94855a-e5a2-43b5-8420-ce670472ce95", "uacID": "9a94855a-e5a2-43b5-8420-ce670472ce95",
"Trigger": "test", "Trigger": "!test",
"Description": "<i>test</i>", "Description": "<i>test</i>",
"Uri": "http://localhost", "Uri": "http://localhost",
"Method": "POST", "Method": "POST",

View File

@ -19,6 +19,14 @@ case "$1" in
dotnet ef migrations add "$2" dotnet ef migrations add "$2"
dotnet ef database update --connection "$connnectionstr" 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") "dbupdate")
dotnet ef database update --connection "$connnectionstr" dotnet ef database update --connection "$connnectionstr"