using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace TeleWave.Infrastructure.Migrations { /// public partial class TemplatePlanningRules : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RulesJson", table: "ScheduleTemplates", type: "jsonb", nullable: true ); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn(name: "RulesJson", table: "ScheduleTemplates"); } } }