using Microsoft.EntityFrameworkCore.Migrations; namespace SharedLibraryCore.Migrations { public partial class AddRecoilOffsetToSnapshot : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RecoilOffset", table: "EFACSnapshot", nullable: false, defaultValue: 0.0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RecoilOffset", table: "EFACSnapshot"); } } }