using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LANCommander.Migrations { /// public partial class AddServerConnectionDetails : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Host", table: "Servers", type: "TEXT", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "Port", table: "Servers", type: "INTEGER", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Host", table: "Servers"); migrationBuilder.DropColumn( name: "Port", table: "Servers"); } } }