using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace NostrStreamer.Migrations { /// public partial class ForwardClientDetails : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "EdgeIp", table: "Streams", type: "text", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "ForwardClientId", table: "Streams", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EdgeIp", table: "Streams"); migrationBuilder.DropColumn( name: "ForwardClientId", table: "Streams"); } } }