using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.SqliteMigrations.Migrations; /// public partial class MakeBlobNonNull : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Value", table: "Cache", type: "BLOB", nullable: false, defaultValue: new byte[0], oldClrType: typeof(byte[]), oldType: "BLOB", oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Value", table: "Cache", type: "BLOB", nullable: true, oldClrType: typeof(byte[]), oldType: "BLOB"); } }