using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MoonlightServers.ApiServer.Database.Migrations { /// public partial class AddedNodeSslField : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "UseSsl", schema: "Servers", table: "Nodes", type: "tinyint(1)", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "UseSsl", schema: "Servers", table: "Nodes"); } } }