Skip to content

Commit

Permalink
Update Sample. Fix database migration. Update to webpack 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegoO committed Sep 20, 2023
1 parent 7c9655f commit 68dde60
Show file tree
Hide file tree
Showing 11 changed files with 5,302 additions and 4,390 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
name: "OrderInvoice",
columns: table => new
{
Id = table.Column<string>(nullable: false),
Id = table.Column<string>(nullable: false, maxLength: 128),
CancelReason = table.Column<string>(maxLength: 2048, nullable: true),
CancelledDate = table.Column<DateTime>(nullable: true),
Comment = table.Column<string>(maxLength: 2048, nullable: true),
Expand Down
Loading

0 comments on commit 68dde60

Please sign in to comment.