250 lines
8.3 KiB
C#
250 lines
8.3 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||
|
using Server.DB;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Server.DB.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(WonderkingContext))]
|
|||
|
[Migration("20231113192405_AdditionalCharacterData")]
|
|||
|
partial class AdditionalCharacterData
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "7.0.13")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|||
|
|
|||
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.Account", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<string>("Email")
|
|||
|
.HasColumnType("text");
|
|||
|
|
|||
|
b.Property<byte[]>("Password")
|
|||
|
.HasColumnType("bytea");
|
|||
|
|
|||
|
b.Property<byte>("PermissionLevel")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte[]>("Salt")
|
|||
|
.HasColumnType("bytea");
|
|||
|
|
|||
|
b.Property<string>("Username")
|
|||
|
.HasColumnType("varchar(20)");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Accounts");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.Character", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<Guid>("AccountId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<long>("Experience")
|
|||
|
.HasColumnType("bigint");
|
|||
|
|
|||
|
b.Property<byte>("Gender")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<int>("Health")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<short>("LastXCoordinate")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<short>("LastYCoordinate")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("Level")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<int>("Mana")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<int>("MapId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.HasColumnType("varchar(20)");
|
|||
|
|
|||
|
b.Property<byte>("PvPLevel")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("ServerId")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.HasIndex("AccountId");
|
|||
|
|
|||
|
b.ToTable("Characters");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.InventoryItem", b =>
|
|||
|
{
|
|||
|
b.Property<Guid>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<byte>("AddOption")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("AddOption2")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("AddOption3")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<Guid>("CharacterId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b.Property<int>("Count")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<int>("ItemId")
|
|||
|
.HasColumnType("integer");
|
|||
|
|
|||
|
b.Property<byte>("ItemType")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("Level")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<short>("Option")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<short>("Option2")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<short>("Option3")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("Rarity")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.Property<byte>("Slot")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.HasIndex("CharacterId");
|
|||
|
|
|||
|
b.ToTable("InventoryItem");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.Character", b =>
|
|||
|
{
|
|||
|
b.HasOne("Server.DB.Documents.Account", "Account")
|
|||
|
.WithMany("Characters")
|
|||
|
.HasForeignKey("AccountId")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
|
|||
|
b.OwnsOne("Wonderking.Packets.Outgoing.BaseStats", "BaseStats", b1 =>
|
|||
|
{
|
|||
|
b1.Property<Guid>("CharacterId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b1.Property<short>("Dexterity")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<short>("Intelligence")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<short>("Luck")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<short>("Strength")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<short>("Vitality")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<short>("Wisdom")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.HasKey("CharacterId");
|
|||
|
|
|||
|
b1.ToTable("Characters");
|
|||
|
|
|||
|
b1.WithOwner()
|
|||
|
.HasForeignKey("CharacterId");
|
|||
|
});
|
|||
|
|
|||
|
b.OwnsOne("Wonderking.Packets.Outgoing.JobData", "JobData", b1 =>
|
|||
|
{
|
|||
|
b1.Property<Guid>("CharacterId")
|
|||
|
.HasColumnType("uuid");
|
|||
|
|
|||
|
b1.Property<byte>("FirstJob")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<byte>("FourthJob")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<byte>("SecondJob")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.Property<byte>("ThirdJob")
|
|||
|
.HasColumnType("smallint");
|
|||
|
|
|||
|
b1.HasKey("CharacterId");
|
|||
|
|
|||
|
b1.ToTable("Characters");
|
|||
|
|
|||
|
b1.WithOwner()
|
|||
|
.HasForeignKey("CharacterId");
|
|||
|
});
|
|||
|
|
|||
|
b.Navigation("Account");
|
|||
|
|
|||
|
b.Navigation("BaseStats");
|
|||
|
|
|||
|
b.Navigation("JobData");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.InventoryItem", b =>
|
|||
|
{
|
|||
|
b.HasOne("Server.DB.Documents.Character", "Character")
|
|||
|
.WithMany("InventoryItems")
|
|||
|
.HasForeignKey("CharacterId")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
|
|||
|
b.Navigation("Character");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.Account", b =>
|
|||
|
{
|
|||
|
b.Navigation("Characters");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Server.DB.Documents.Character", b =>
|
|||
|
{
|
|||
|
b.Navigation("InventoryItems");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|