using Microsoft.EntityFrameworkCore.Migrations; namespace ReallifeGamemode.Database.Migrations { public partial class UnusedColumnRemove : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ShopId", table: "ServerVehicles"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ShopId", table: "ServerVehicles", nullable: true); } } }