miese Corona Zeiten push für Lenhardt Lehmberger

This commit is contained in:
Siga
2020-05-10 19:20:20 +02:00
parent efbff34c21
commit 914f2f9447
12 changed files with 4074 additions and 337 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace ReallifeGamemode.Database.Migrations
{
public partial class PedType : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "Type",
table: "Peds",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Type",
table: "Peds");
}
}
}