add house entity

This commit is contained in:
hydrant
2019-06-26 21:37:21 +02:00
parent 3a894ddb93
commit 12803d03ad
7 changed files with 1377 additions and 103 deletions

View File

@@ -404,6 +404,25 @@ namespace ReallifeGamemode.Migrations
b.ToTable("GroupBankAccounts");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.House", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("Price");
b.Property<string>("Type");
b.Property<int?>("UserId");
b.HasKey("Id");
b.HasIndex("UserId")
.IsUnique();
b.ToTable("Houses");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.Interior", b =>
{
b.Property<int>("Id")
@@ -780,6 +799,8 @@ namespace ReallifeGamemode.Migrations
b.Property<int>("Handmoney");
b.Property<int?>("HouseId");
b.Property<int?>("JobId");
b.Property<int>("LogUserId");
@@ -1025,6 +1046,13 @@ namespace ReallifeGamemode.Migrations
.HasForeignKey("GroupId");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.House", b =>
{
b.HasOne("ReallifeGamemode.Server.Entities.User", "User")
.WithOne("House")
.HasForeignKey("ReallifeGamemode.Server.Entities.House", "UserId");
});
modelBuilder.Entity("ReallifeGamemode.Server.Entities.Logs.Death", b =>
{
b.HasOne("ReallifeGamemode.Server.Entities.User", "Killer")