using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GerbilManagerWebAPI.Migrations { /// public partial class MakeLitterDateNullable : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Date", table: "Litters", type: "date", nullable: true, oldClrType: typeof(DateOnly), oldType: "date"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Date", table: "Litters", type: "date", nullable: false, defaultValue: new DateOnly(1, 1, 1), oldClrType: typeof(DateOnly), oldType: "date", oldNullable: true); } } }