using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace vassago.Migrations { /// public partial class UnconfinguredWebhooks : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Webhooks", table: "Configurations"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn>( name: "Webhooks", table: "Configurations", type: "text[]", nullable: true); } } }