using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LANCommander.Migrations { /// public partial class RelaxNullableStrings : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "WorkingDirectory", table: "SavePaths", type: "TEXT", nullable: true, oldClrType: typeof(string), oldType: "TEXT"); migrationBuilder.AlterColumn( name: "SourceUrl", table: "Media", type: "TEXT", maxLength: 2048, nullable: true, oldClrType: typeof(string), oldType: "TEXT", oldMaxLength: 2048); migrationBuilder.AlterColumn( name: "MimeType", table: "Media", type: "TEXT", maxLength: 255, nullable: true, oldClrType: typeof(string), oldType: "TEXT", oldMaxLength: 255); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "WorkingDirectory", table: "SavePaths", type: "TEXT", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldNullable: true); migrationBuilder.AlterColumn( name: "SourceUrl", table: "Media", type: "TEXT", maxLength: 2048, nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldMaxLength: 2048, oldNullable: true); migrationBuilder.AlterColumn( name: "MimeType", table: "Media", type: "TEXT", maxLength: 255, nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldMaxLength: 255, oldNullable: true); } } }