using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace UniVerse.Infrastructure.Migrations { /// public partial class ReviewLlmRawOutput : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "llm_raw_output", table: "reviews", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "llm_raw_output", table: "reviews"); } } }