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