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