Add RefuseCollector Job and other misc

This commit is contained in:
Siga
2020-04-04 18:33:20 +02:00
parent 69a4ab5d22
commit c871805430
24 changed files with 2251 additions and 104 deletions

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -965,6 +965,10 @@ namespace ReallifeGamemode.Database.Migrations
b.Property<float>("Rotation");
b.Property<bool>("Surplus");
b.Property<int>("Value");
b.Property<string>("Vector");
b.Property<float>("X");