Code re-style.

This commit is contained in:
2020-08-05 21:00:35 +01:00
parent 6f728047c3
commit 569eaa09f6
142 changed files with 5327 additions and 2877 deletions

View File

@@ -43,8 +43,10 @@ namespace Marechai.Database.Migrations
UpdatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.ComputedColumn),
Path = table.Column<string>(nullable: true), PathSeparator = table.Column<string>(nullable: false),
SoftwareVariantId = table.Column<ulong>(nullable: false), MediaId = table.Column<ulong>(nullable: false)
Path = table.Column<string>(nullable: true),
PathSeparator = table.Column<string>(nullable: false),
SoftwareVariantId = table.Column<ulong>(nullable: false),
MediaId = table.Column<ulong>(nullable: false)
}, constraints: table =>
{
table.PrimaryKey("PK_SoftwareVariantByCompilationMedia", x => x.Id);