fix fehlende db migration

This commit is contained in:
hydrant
2020-04-27 15:07:36 +02:00
parent 21bda83b00
commit 4a3acce1ba
3 changed files with 2665 additions and 405 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace ReallifeGamemode.Database.Migrations
{
public partial class UserJobSkillBusPilot : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "BusSkill",
table: "Users",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "PilotSkill",
table: "Users",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BusSkill",
table: "Users");
migrationBuilder.DropColumn(
name: "PilotSkill",
table: "Users");
}
}
}