using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AircraftPlantDatabaseImplement.Migrations { /// public partial class MessageInfoUpdate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsChecked", table: "Messages", type: "bit", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "Reply", table: "Messages", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsChecked", table: "Messages"); migrationBuilder.DropColumn( name: "Reply", table: "Messages"); } } }