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