-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
689333b
commit 686d7c1
Showing
55 changed files
with
578 additions
and
30 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
API/TVR.Bundesliga.API.Contracts/bin/Debug/net8.0/TVR.Bundesliga.API.Contracts.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
API/TVR.Bundesliga.API.Contracts/obj/Debug/net8.0/TVR.Bundesliga.API.Contracts.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
...VR.Bundesliga.API.Contracts/obj/Debug/net8.0/TVR.Bundesliga.API.Contracts.sourcelink.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"documents":{"/Users/sascha/Documents/repos/tvr-bundesliga/*":"https://raw.githubusercontent.com/saschaheinl/tvr-bundesliga-apps/5b745884b1b27f4ddc86c78e7e75fcb628dd6c6c/*"}} | ||
{"documents":{"/Users/sascha/Documents/repos/tvr-bundesliga/*":"https://raw.githubusercontent.com/saschaheinl/tvr-bundesliga-apps/689333bd7d30980d737924b86ba79c2bf81969f0/*"}} |
Binary file modified
BIN
+0 Bytes
(100%)
API/TVR.Bundesliga.API.Contracts/obj/Debug/net8.0/ref/TVR.Bundesliga.API.Contracts.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
API/TVR.Bundesliga.API.Contracts/obj/Debug/net8.0/refint/TVR.Bundesliga.API.Contracts.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
API/TVR.Bundesliga.API.Contracts/obj/rider.project.model.nuget.info
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
17256611589446991 | ||
17256623670413570 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 126 additions & 0 deletions
126
...VR.Bundesliga.API.Core/Migrations/20240906224009_RemoveGuestIdUniqueContraint.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
API/TVR.Bundesliga.API.Core/Migrations/20240906224009_RemoveGuestIdUniqueContraint.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace TVR.Bundesliga.API.Core.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class RemoveGuestIdUniqueContraint : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
|
||
} | ||
} | ||
} |
124 changes: 124 additions & 0 deletions
124
....API.Core/Migrations/20240906225016_RemoveGuestIdUniqueContraintAndAddGuestId.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
59 changes: 59 additions & 0 deletions
59
...undesliga.API.Core/Migrations/20240906225016_RemoveGuestIdUniqueContraintAndAddGuestId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace TVR.Bundesliga.API.Core.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class RemoveGuestIdUniqueContraintAndAddGuestId : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropForeignKey( | ||
name: "FK_Tickets_Guest_GuestId", | ||
table: "Tickets"); | ||
|
||
migrationBuilder.AlterColumn<int>( | ||
name: "GuestId", | ||
table: "Tickets", | ||
type: "integer", | ||
nullable: true, | ||
oldClrType: typeof(int), | ||
oldType: "integer"); | ||
|
||
migrationBuilder.AddForeignKey( | ||
name: "FK_Tickets_Guest_GuestId", | ||
table: "Tickets", | ||
column: "GuestId", | ||
principalTable: "Guest", | ||
principalColumn: "Id"); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropForeignKey( | ||
name: "FK_Tickets_Guest_GuestId", | ||
table: "Tickets"); | ||
|
||
migrationBuilder.AlterColumn<int>( | ||
name: "GuestId", | ||
table: "Tickets", | ||
type: "integer", | ||
nullable: false, | ||
defaultValue: 0, | ||
oldClrType: typeof(int), | ||
oldType: "integer", | ||
oldNullable: true); | ||
|
||
migrationBuilder.AddForeignKey( | ||
name: "FK_Tickets_Guest_GuestId", | ||
table: "Tickets", | ||
column: "GuestId", | ||
principalTable: "Guest", | ||
principalColumn: "Id", | ||
onDelete: ReferentialAction.Cascade); | ||
} | ||
} | ||
} |
Oops, something went wrong.