using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RecNet.Infrastructure.Persistence.Migrations { /// public partial class ServerConfigs : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ServerConfigs", columns: table => new { Key = table.Column(type: "character varying(128)", maxLength: 128, nullable: false), Value = table.Column(type: "jsonb", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ServerConfigs", x => x.Key); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ServerConfigs"); } } }