editorconfig added,

modelbuilder fix for local connString
This commit is contained in:
Aleksandr Popov
2023-06-26 08:58:42 +02:00
parent cd2605efe3
commit 171b640230
8 changed files with 506 additions and 19 deletions
@@ -11,7 +11,7 @@ namespace TURN.Services.Chess.Migrations
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
_ = migrationBuilder.CreateTable(
name: "Games",
columns: table => new
{
@@ -23,14 +23,14 @@ namespace TURN.Services.Chess.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_Games", x => x.GameId);
_ = table.PrimaryKey("PK_Games", x => x.GameId);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
_ = migrationBuilder.DropTable(
name: "Games");
}
}