Revert "summarize bank accounts"

This reverts commit a21e7f887a.
This commit is contained in:
hydrant
2019-05-13 20:34:46 +02:00
parent a21e7f887a
commit 4500aa5275
10 changed files with 135 additions and 1499 deletions

View File

@@ -17,6 +17,11 @@ namespace ReallifeGamemode.Migrations
table: "ServerVehicles",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "ShopId",
table: "ServerVehicles",
nullable: true);
migrationBuilder.CreateTable(
name: "Jobs",
columns: table => new
@@ -85,6 +90,10 @@ namespace ReallifeGamemode.Migrations
migrationBuilder.DropColumn(
name: "JobId",
table: "ServerVehicles");
migrationBuilder.DropColumn(
name: "ShopId",
table: "ServerVehicles");
}
}
}