using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace CredentialManager.Migrations { /// public partial class AddIntervalSchedulingFields : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IntervalUnit", table: "ProfileSchedules", type: "TEXT", maxLength: 20, nullable: true); migrationBuilder.AddColumn( name: "IntervalValue", table: "ProfileSchedules", type: "INTEGER", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IntervalUnit", table: "ProfileSchedules"); migrationBuilder.DropColumn( name: "IntervalValue", table: "ProfileSchedules"); } } }