using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MTWireGuard.Application.Migrations { /// public partial class FixDataUsage : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ResetNotes", table: "DataUsages", type: "TEXT", nullable: true, oldClrType: typeof(string), oldType: "TEXT"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "ResetNotes", table: "DataUsages", type: "TEXT", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldNullable: true); } } }