Add ItemShop, fix ClotheShop Payment, fix Vehicle Respawn, Add Vehicle Lock from outside
This commit is contained in:
@@ -896,6 +896,24 @@ namespace ReallifeGamemode.Database.Migrations
|
||||
b.ToTable("ShopClothes");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("ReallifeGamemode.Database.Entities.ShopItem", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("Amount");
|
||||
|
||||
b.Property<int>("ItemId");
|
||||
|
||||
b.Property<int>("Price");
|
||||
|
||||
b.Property<int>("ShopId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("ShopItems");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("ReallifeGamemode.Database.Entities.TuningGarage", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
||||
Reference in New Issue
Block a user