using Microsoft.EntityFrameworkCore.Migrations; namespace API.Data.Migrations { public partial class ProgressConcurencyCheck : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RowVersion", table: "AppUserProgresses", type: "INTEGER", nullable: false, defaultValue: 0u); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RowVersion", table: "AppUserProgresses"); } } }