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