using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RazorPagesMovie.Migrations { /// public partial class AddNotificationSentToContactMessage : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Message", table: "ContactMessage", type: "nvarchar(max)", maxLength: 5000, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(4000)", oldMaxLength: 4000); migrationBuilder.AddColumn( name: "NotificationSent", table: "ContactMessage", type: "bit", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "NotificationSent", table: "ContactMessage"); migrationBuilder.AlterColumn( name: "Message", table: "ContactMessage", type: "nvarchar(4000)", maxLength: 4000, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(max)", oldMaxLength: 5000); } } }