From fb9c8f76ef750510fa3e7fb65a15359ccaa13d8d Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 13 May 2019 20:35:21 +0200 Subject: [PATCH] fix job migration --- .../Migrations/20190513161249_Jobs.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ReallifeGamemode.Server/Migrations/20190513161249_Jobs.cs b/ReallifeGamemode.Server/Migrations/20190513161249_Jobs.cs index 0675ddc3..8ad5a9bb 100644 --- a/ReallifeGamemode.Server/Migrations/20190513161249_Jobs.cs +++ b/ReallifeGamemode.Server/Migrations/20190513161249_Jobs.cs @@ -17,11 +17,6 @@ namespace ReallifeGamemode.Migrations table: "ServerVehicles", nullable: true); - migrationBuilder.AddColumn( - name: "ShopId", - table: "ServerVehicles", - nullable: true); - migrationBuilder.CreateTable( name: "Jobs", columns: table => new @@ -90,10 +85,6 @@ namespace ReallifeGamemode.Migrations migrationBuilder.DropColumn( name: "JobId", table: "ServerVehicles"); - - migrationBuilder.DropColumn( - name: "ShopId", - table: "ServerVehicles"); } } }