using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ClaudeDo.Data.Migrations
{
///
public partial class InheritableMaxTurns : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "max_turns",
table: "tasks",
type: "INTEGER",
nullable: true);
migrationBuilder.AddColumn(
name: "max_turns",
table: "list_config",
type: "INTEGER",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "max_turns",
table: "tasks");
migrationBuilder.DropColumn(
name: "max_turns",
table: "list_config");
}
}
}