using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Cleanuparr.Persistence.Postgres.Migrations.Data { /// public partial class AddHttpSendUserAgent : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "http_send_user_agent", schema: "data", table: "general_configs", type: "boolean", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "http_send_user_agent", schema: "data", table: "general_configs"); } } }