Pushed up to docker

This commit is contained in:
2021-11-02 09:16:15 -04:00
parent a3ec5f6169
commit 873f126aac
10 changed files with 452 additions and 846 deletions

View File

@@ -3,6 +3,7 @@ using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
using TOOHUCardAPI.Data;
namespace TOOHUCardAPI.Migrations
@@ -14,27 +15,29 @@ namespace TOOHUCardAPI.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "5.0.11");
.HasAnnotation("Relational:MaxIdentifierLength", 63)
.HasAnnotation("ProductVersion", "5.0.11")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
modelBuilder.Entity("TOOHUCardAPI.Data.Models.Card", b =>
{
b.Property<string>("ItemCode")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<string>("CardName")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<bool>("HasPortrait")
.HasColumnType("INTEGER");
.HasColumnType("boolean");
b.Property<bool>("HasVoice")
.HasColumnType("INTEGER");
.HasColumnType("boolean");
b.Property<int>("Quality")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int?>("RankTowerEntryId")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.HasKey("ItemCode");
@@ -904,13 +907,13 @@ namespace TOOHUCardAPI.Migrations
modelBuilder.Entity("TOOHUCardAPI.Data.Models.CardLevel", b =>
{
b.Property<long>("UserSteamId")
.HasColumnType("INTEGER");
.HasColumnType("bigint");
b.Property<string>("CardItemCode")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<int>("Level")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.HasKey("UserSteamId", "CardItemCode");
@@ -923,16 +926,17 @@ namespace TOOHUCardAPI.Migrations
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<string>("EncodedString")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<string>("GroupKey")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<long?>("UserSteamId")
.HasColumnType("INTEGER");
.HasColumnType("bigint");
b.HasKey("Id");
@@ -945,22 +949,23 @@ namespace TOOHUCardAPI.Migrations
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<long>("Damage")
.HasColumnType("INTEGER");
.HasColumnType("bigint");
b.Property<int>("RankType")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<long?>("UserSteamId")
.HasColumnType("INTEGER");
.HasColumnType("bigint");
b.Property<string>("Version")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<int>("Wave")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.HasKey("Id");
@@ -973,25 +978,26 @@ namespace TOOHUCardAPI.Migrations
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<int>("Attack")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<string>("BaseUnitItemCode")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<int>("Damage")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int>("Power")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int?>("RankEntryId")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int>("Star")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.HasKey("Id");
@@ -1006,52 +1012,53 @@ namespace TOOHUCardAPI.Migrations
{
b.Property<long>("SteamId")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
.HasColumnType("bigint")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<bool>("Ban")
.HasColumnType("INTEGER");
.HasColumnType("boolean");
b.Property<DateTime>("EndTime")
.HasColumnType("TEXT");
.HasColumnType("timestamp without time zone");
b.Property<DateTime>("KeySaveDate")
.HasColumnType("TEXT");
.HasColumnType("timestamp without time zone");
b.Property<int>("KeyTotal")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int>("KeyUseCount")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<DateTime>("LastDailyLoginBonus")
.HasColumnType("TEXT");
.HasColumnType("timestamp without time zone");
b.Property<DateTime>("LastFirstWin")
.HasColumnType("TEXT");
.HasColumnType("timestamp without time zone");
b.Property<int>("MaxTeamWave")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int>("MaxWave")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<string>("PetEffect")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<int>("PetLevel")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<string>("PetModel")
.HasColumnType("TEXT");
.HasColumnType("text");
b.Property<int>("Point")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<int>("PowerMaxTotal")
.HasColumnType("INTEGER");
.HasColumnType("integer");
b.Property<bool>("Vip")
.HasColumnType("INTEGER");
.HasColumnType("boolean");
b.HasKey("SteamId");