// using System; using CleanArchitecture.Infrastructure.Database; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace CleanArchitecture.Infrastructure.Migrations { [DbContext(typeof(ApplicationDbContext))] [Migration("20230320204057_AddUserRoleAndPassword")] partial class AddUserRoleAndPassword { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "7.0.4") .HasAnnotation("Proxies:ChangeTracking", false) .HasAnnotation("Proxies:CheckEquality", false) .HasAnnotation("Proxies:LazyLoading", true) .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); modelBuilder.Entity("CleanArchitecture.Domain.Entities.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uniqueidentifier"); b.Property("Deleted") .HasColumnType("bit"); b.Property("Email") .IsRequired() .HasMaxLength(320) .HasColumnType("nvarchar(320)"); b.Property("GivenName") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)"); b.Property("Password") .IsRequired() .HasMaxLength(128) .HasColumnType("nvarchar(128)"); b.Property("Role") .HasColumnType("int"); b.Property("Surname") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)"); b.HasKey("Id"); b.ToTable("Users"); b.HasData( new { Id = new Guid("3fc7aacd-41cc-4ca2-b842-32edcd0782d5"), Deleted = false, Email = "admin@email.com", GivenName = "User", Password = "$2a$12$Blal/uiFIJdYsCLTMUik/egLbfg3XhbnxBC6Sb5IKz2ZYhiU/MzL2", Role = 0, Surname = "Admin" }); }); #pragma warning restore 612, 618 } } }