save locations

This commit is contained in:
hydrant
2019-09-29 22:16:59 +02:00
parent cf7fccbc28
commit 6a23f6ef59
17 changed files with 1607 additions and 49 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,33 @@
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
namespace ReallifeGamemode.Database.Migrations
{
public partial class SavedLocations : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Locations",
columns: table => new
{
Id = table.Column<int>(nullable: false)
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
Description = table.Column<string>(nullable: true),
X = table.Column<double>(nullable: false),
Y = table.Column<double>(nullable: false),
Z = table.Column<double>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Locations", x => x.Id);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Locations");
}
}
}

View File

@@ -14,7 +14,7 @@ namespace ReallifeGamemode.Database.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.6-servicing-10079")
.HasAnnotation("ProductVersion", "2.1.11-servicing-32099")
.HasAnnotation("Relational:MaxIdentifierLength", 64);
modelBuilder.Entity("ReallifeGamemode.Database.Entities.ATM", b =>
@@ -61,6 +61,37 @@ namespace ReallifeGamemode.Database.Migrations
b.ToTable("Bans");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.BusinessBankAccount", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("Balance");
b.Property<int>("BusinessId");
b.HasKey("Id");
b.HasIndex("BusinessId")
.IsUnique();
b.ToTable("BusinessBankAccounts");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.BusinessData", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("BusinessId");
b.Property<int>("Price");
b.HasKey("Id");
b.ToTable("BusinessData");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.BusRoute", b =>
{
b.Property<int>("Id")
@@ -95,37 +126,6 @@ namespace ReallifeGamemode.Database.Migrations
b.ToTable("BusRoutesPoints");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.BusinessBankAccount", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("Balance");
b.Property<int>("BusinessId");
b.HasKey("Id");
b.HasIndex("BusinessId")
.IsUnique();
b.ToTable("BusinessBankAccounts");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.BusinessData", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("BusinessId");
b.Property<int>("Price");
b.HasKey("Id");
b.ToTable("BusinessData");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.Character", b =>
{
b.Property<int>("Id")
@@ -536,6 +536,24 @@ namespace ReallifeGamemode.Database.Migrations
b.ToTable("Interiors");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.Location", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<string>("Description");
b.Property<double>("X");
b.Property<double>("Y");
b.Property<double>("Z");
b.HasKey("Id");
b.ToTable("Locations");
});
modelBuilder.Entity("ReallifeGamemode.Database.Entities.Logs.BankAccountTransactionHistory", b =>
{
b.Property<int>("Id")
@@ -1064,6 +1082,8 @@ namespace ReallifeGamemode.Database.Migrations
b.HasIndex("GroupId");
b.ToTable("GroupVehicle");
b.HasDiscriminator().HasValue("GroupVehicle");
});
@@ -1073,6 +1093,8 @@ namespace ReallifeGamemode.Database.Migrations
b.Property<int>("JobId");
b.ToTable("JobVehicle");
b.HasDiscriminator().HasValue("JobVehicle");
});
@@ -1080,6 +1102,9 @@ namespace ReallifeGamemode.Database.Migrations
{
b.HasBaseType("ReallifeGamemode.Database.Entities.ServerVehicle");
b.ToTable("SavedVehicle");
b.HasDiscriminator().HasValue("SavedVehicle");
});