using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DBConnection.Migrations { public partial class makesomechapterfieldsoptional : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "LastContentFetch", table: "Chapters", type: "TEXT", nullable: true, oldClrType: typeof(DateTime), oldType: "TEXT"); migrationBuilder.AlterColumn( name: "DateUpdated", table: "Chapters", type: "TEXT", nullable: true, oldClrType: typeof(DateTime), oldType: "TEXT"); migrationBuilder.AlterColumn( name: "DatePosted", table: "Chapters", type: "TEXT", nullable: true, oldClrType: typeof(DateTime), oldType: "TEXT"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "LastContentFetch", table: "Chapters", type: "TEXT", nullable: false, defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), oldClrType: typeof(DateTime), oldType: "TEXT", oldNullable: true); migrationBuilder.AlterColumn( name: "DateUpdated", table: "Chapters", type: "TEXT", nullable: false, defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), oldClrType: typeof(DateTime), oldType: "TEXT", oldNullable: true); migrationBuilder.AlterColumn( name: "DatePosted", table: "Chapters", type: "TEXT", nullable: false, defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), oldClrType: typeof(DateTime), oldType: "TEXT", oldNullable: true); } } }