continue Gangwar System

This commit is contained in:
Lukas Moungos
2019-11-30 18:54:11 +01:00
parent e3dbf7c4e1
commit a4303a1a01
14 changed files with 1904 additions and 6 deletions

View File

@@ -890,6 +890,32 @@ namespace ReallifeGamemode.Database.Migrations
b.ToTable("TuningGarages");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.Turfs", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("Color");
b.Property<int?>("FactionId");
b.Property<string>("Name");
b.Property<string>("Owner");
b.Property<float>("Range");
b.Property<float>("Rotation");
b.Property<int>("X");
b.Property<int>("Y");
b.HasKey("Id");
b.ToTable("Turfs");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.User", b =>
{
b.Property<int>("Id")