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