Practice battles work
This commit is contained in:
@@ -25486,6 +25486,57 @@ namespace SVSim.Database.Migrations
|
||||
b.ToTable("PaymentItems");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("SVSim.Database.Models.PracticeOpponentEntry", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("AiDeckLevel")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("AiLogicLevel")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("AiMaxLife")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Battle3dFieldId")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int>("CharaId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("ClassId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<DateTime>("DateCreated")
|
||||
.HasColumnType("timestamp with time zone");
|
||||
|
||||
b.Property<DateTime?>("DateUpdated")
|
||||
.HasColumnType("timestamp with time zone");
|
||||
|
||||
b.Property<int>("DegreeId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("IsCampaignPractice")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("IsMaintenance")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("PracticeId")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("TextId")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("PracticeOpponents");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("SVSim.Database.Models.PreReleaseInfo", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
||||
Reference in New Issue
Block a user