// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using StubContext; #nullable disable namespace StubContext.Migrations { [DbContext(typeof(StubAppContext))] [Migration("20240221223713_m3")] partial class m3 { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); modelBuilder.Entity("AppContext.Entities.MemberEntity", b => { b.Property("TeamId") .HasColumnType("INTEGER"); b.Property("UserId") .HasColumnType("INTEGER"); b.Property("Role") .IsRequired() .HasColumnType("TEXT"); b.HasKey("TeamId", "UserId"); b.HasIndex("UserId"); b.ToTable("Members"); }); modelBuilder.Entity("AppContext.Entities.TacticEntity", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("CreationDate") .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("OwnerId") .HasColumnType("INTEGER"); b.Property("Type") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("OwnerId"); b.ToTable("Tactics"); }); modelBuilder.Entity("AppContext.Entities.TacticStepEntity", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("JsonContent") .IsRequired() .HasColumnType("TEXT"); b.Property("ParentId") .HasColumnType("INTEGER"); b.Property("StepId") .HasColumnType("INTEGER"); b.Property("TacticId") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("ParentId"); b.HasIndex("TacticId"); b.ToTable("TacticSteps"); }); modelBuilder.Entity("AppContext.Entities.TeamEntity", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("MainColor") .IsRequired() .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("Picture") .IsRequired() .HasColumnType("TEXT"); b.Property("SecondColor") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("Teams"); }); modelBuilder.Entity("AppContext.Entities.UserEntity", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Email") .IsRequired() .HasColumnType("TEXT"); b.Property("IsAdmin") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("Password") .IsRequired() .HasColumnType("TEXT"); b.Property("ProfilePicture") .IsRequired() .HasColumnType("TEXT"); b.Property("Salt") .IsRequired() .HasColumnType("BLOB"); b.HasKey("Id"); b.ToTable("Users"); b.HasData( new { Id = 1, Email = "maxime@mail.com", IsAdmin = true, Name = "maxime", Password = "MA/xRuayPtWrv8x3Cgz5OzmlHs/d2kdqpsejjELTgVo=", ProfilePicture = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png", Salt = new byte[] { 150, 122, 99, 167, 226, 248, 165, 213, 13, 3, 4, 9, 173, 71, 224, 221, 124, 172, 97, 145, 188, 142, 224, 77, 247, 77, 124, 37, 24, 107, 43, 189 } }, new { Id = 2, Email = "mael@mail.com", IsAdmin = true, Name = "mael", Password = "d4SIGx08pW4fFOFycWyscF9MwGhN5/1b0NC1Qk23YCw=", ProfilePicture = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png", Salt = new byte[] { 139, 244, 180, 246, 0, 73, 0, 219, 14, 221, 232, 49, 46, 122, 94, 50, 119, 154, 154, 53, 224, 187, 86, 230, 63, 73, 65, 232, 218, 136, 75, 142 } }, new { Id = 3, Email = "yanis@mail.com", IsAdmin = true, Name = "yanis", Password = "rtqwioPIa+g4C7hlsJMynrxVjUYw1V09z21bA6nBORM=", ProfilePicture = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png", Salt = new byte[] { 154, 78, 98, 162, 75, 166, 161, 47, 28, 160, 107, 245, 28, 33, 244, 213, 64, 247, 249, 28, 216, 58, 63, 44, 71, 179, 227, 67, 81, 146, 81, 87 } }, new { Id = 4, Email = "simon@mail.com", IsAdmin = true, Name = "simon", Password = "RWebQFKoA5GHSVibfFwKJ+YrgliWiCjzHmDCQYA6h9Y=", ProfilePicture = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png", Salt = new byte[] { 151, 193, 143, 48, 112, 90, 1, 91, 205, 85, 248, 129, 36, 50, 255, 5, 247, 95, 2, 156, 141, 189, 98, 4, 223, 179, 132, 19, 109, 43, 75, 43 } }, new { Id = 5, Email = "vivien@mail.com", IsAdmin = true, Name = "vivien", Password = "aduT6b63cL7GYh6qX1VdL0YvQIDz7uXxwnqrM9SSzzU=", ProfilePicture = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png", Salt = new byte[] { 163, 203, 253, 50, 184, 48, 93, 231, 249, 199, 182, 214, 40, 190, 70, 79, 53, 18, 26, 151, 57, 183, 166, 150, 179, 165, 48, 68, 12, 31, 129, 242 } }); }); modelBuilder.Entity("AppContext.Entities.MemberEntity", b => { b.HasOne("AppContext.Entities.TeamEntity", "Team") .WithMany("Members") .HasForeignKey("TeamId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("AppContext.Entities.UserEntity", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Team"); b.Navigation("User"); }); modelBuilder.Entity("AppContext.Entities.TacticEntity", b => { b.HasOne("AppContext.Entities.UserEntity", "Owner") .WithMany("Tactics") .HasForeignKey("OwnerId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Owner"); }); modelBuilder.Entity("AppContext.Entities.TacticStepEntity", b => { b.HasOne("AppContext.Entities.TacticStepEntity", "Parent") .WithMany() .HasForeignKey("ParentId"); b.HasOne("AppContext.Entities.TacticEntity", "Tactic") .WithMany() .HasForeignKey("TacticId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Parent"); b.Navigation("Tactic"); }); modelBuilder.Entity("AppContext.Entities.TeamEntity", b => { b.Navigation("Members"); }); modelBuilder.Entity("AppContext.Entities.UserEntity", b => { b.Navigation("Tactics"); }); #pragma warning restore 612, 618 } } }