using System.Collections.Generic; using DysonNetwork.Shared.Models; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DysonNetwork.Insight.Migrations { /// public partial class AddThinkingChunk : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn>( name: "chunks", table: "thinking_thoughts", type: "jsonb", nullable: false, defaultValue: new List() ); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "chunks", table: "thinking_thoughts"); } } }