// using Kehyeedra3; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Kehyeedra3.Migrations { [DbContext(typeof(ApplicationDbContext))] [Migration("20200220195125_Fishing")] partial class Fishing { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "3.1.1") .HasAnnotation("Relational:MaxIdentifierLength", 64); modelBuilder.Entity("Kehyeedra3.Services.Models.Fishing", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("bigint unsigned"); b.Property("CFish1") .HasColumnType("bigint unsigned"); b.Property("CFish2") .HasColumnType("bigint unsigned"); b.Property("CFish3") .HasColumnType("bigint unsigned"); b.Property("LFish") .HasColumnType("bigint unsigned"); b.Property("LastFish") .HasColumnType("bigint unsigned"); b.Property("Lvl") .HasColumnType("bigint unsigned"); b.Property("RFish1") .HasColumnType("bigint unsigned"); b.Property("RFish2") .HasColumnType("bigint unsigned"); b.Property("RFish3") .HasColumnType("bigint unsigned"); b.Property("TXp") .HasColumnType("bigint unsigned"); b.Property("UFish1") .HasColumnType("bigint unsigned"); b.Property("UFish2") .HasColumnType("bigint unsigned"); b.Property("UFish3") .HasColumnType("bigint unsigned"); b.Property("Xp") .HasColumnType("bigint unsigned"); b.HasKey("Id"); b.ToTable("Fishing"); }); modelBuilder.Entity("Kehyeedra3.Services.Models.Reminder", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("bigint unsigned"); b.Property("Created") .HasColumnType("bigint unsigned"); b.Property("Message") .HasColumnType("longtext CHARACTER SET utf8mb4"); b.Property("Send") .HasColumnType("bigint unsigned"); b.Property("UserId") .HasColumnType("bigint unsigned"); b.HasKey("Id"); b.ToTable("Reminders"); }); modelBuilder.Entity("Kehyeedra3.Services.Models.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("bigint unsigned"); b.Property("Avatar") .HasColumnType("longtext CHARACTER SET utf8mb4"); b.Property("LastMine") .HasColumnType("bigint unsigned"); b.Property("Money") .HasColumnType("bigint"); b.Property("Username") .HasColumnType("longtext CHARACTER SET utf8mb4"); b.HasKey("Id"); b.ToTable("Users"); }); #pragma warning restore 612, 618 } } }