Compare commits

...

2 Commits

Author SHA1 Message Date
Tizian.Breuch
b86c006f25 row version
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 1m10s
2025-11-20 15:05:03 +01:00
Tizian.Breuch
efe186320d test 2025-11-07 15:58:04 +01:00
3 changed files with 1390 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ namespace Webshop.Application.DTOs.Products
public decimal? PurchasePrice { get; set; }
public bool IsFeatured { get; set; }
public int FeaturedDisplayOrder { get; set; }
[Required]
public byte[]? RowVersion { get; set; }
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Webshop.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class rowversion : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}