using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DysonNetwork.Sphere.Migrations { /// public partial class AddPublisherKeys : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "private_key_pem", table: "publishers", type: "character varying(8192)", maxLength: 8192, nullable: true); migrationBuilder.AddColumn( name: "public_key_pem", table: "publishers", type: "character varying(8192)", maxLength: 8192, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "private_key_pem", table: "publishers"); migrationBuilder.DropColumn( name: "public_key_pem", table: "publishers"); } } }