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

@@ -18,9 +18,12 @@ namespace Marechai.Database.Migrations
UpdatedOn = table.Column<DateTime>(nullable: false).
Annotation("MySql:ValueGenerationStrategy",
MySqlValueGenerationStrategy.ComputedColumn),
Type = table.Column<byte>(nullable: false), UserId = table.Column<string>(nullable: false),
Table = table.Column<string>(nullable: true), Keys = table.Column<string>(nullable: true),
OldValues = table.Column<string>(nullable: true), NewValues = table.Column<string>(nullable: true),
Type = table.Column<byte>(nullable: false),
UserId = table.Column<string>(nullable: false),
Table = table.Column<string>(nullable: true),
Keys = table.Column<string>(nullable: true),
OldValues = table.Column<string>(nullable: true),
NewValues = table.Column<string>(nullable: true),
AffectedColumns = table.Column<string>(nullable: true)
}, constraints: table =>
{